Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(45)

Unified Diff: pkg/dev_compiler/test/browser/language_tests.js

Issue 2666593002: Some test cleanup (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/dev_compiler/test/browser/language_tests.js
diff --git a/pkg/dev_compiler/test/browser/language_tests.js b/pkg/dev_compiler/test/browser/language_tests.js
index 1bf0b537da14c37b090a929aa8f31efe3bf01d61..404c4b6699e55dad1fd98671ae616780561bf5b4 100644
--- a/pkg/dev_compiler/test/browser/language_tests.js
+++ b/pkg/dev_compiler/test/browser/language_tests.js
@@ -185,6 +185,7 @@ define(['dart_sdk', 'async_helper', 'expect', 'unittest', 'is', 'require'],
'generic_instanceof2_test': fail,
'generic_is_check_test': fail,
'getter_closure_execution_order_test': fail,
+ 'gc_test': 'slow',
'hash_code_mangling_test': fail,
'identical_closure2_test': fail,
'infinite_switch_label_test': fail,
@@ -353,6 +354,9 @@ define(['dart_sdk', 'async_helper', 'expect', 'unittest', 'is', 'require'],
},
'lib/convert': {
+ 'base64_test_01_multi': 'slow',
+ 'chunked_conversion_utf85_test': 'slow',
+
'encoding_test': skip_timeout,
'json_utf8_chunk_test': skip_timeout,
@@ -690,8 +694,9 @@ define(['dart_sdk', 'async_helper', 'expect', 'unittest', 'is', 'require'],
}
};
- test(name, function(done) { // 'function' to allow `this.timeout`.
- console.debug('Running test: ' + name);
+ var fullName = status_group + '/' + name;
+ test(fullName, function(done) { // 'function' to allow `this.timeout`.
+ console.debug('Running test: ' + fullName);
// Many tests are async. Currently, tests can indicate this in
// two different ways. First, `main` can call (in Dart)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698