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

Unified Diff: tools/test.dart

Issue 10247004: test rename overhaul: step 6 - isolate tests (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 8 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
Index: tools/test.dart
diff --git a/tools/test.dart b/tools/test.dart
index 8d5ca761298e1386cac462012fbd59069c5f8c30..1547b0ed0170be2dc961224bd48a64c518e3e14a 100755
--- a/tools/test.dart
+++ b/tools/test.dart
@@ -40,7 +40,6 @@
#import("../samples/tests/samples/test_config.dart");
#import("../tests/co19/test_config.dart");
#import("../tests/corelib/test_config.dart");
-#import("../tests/isolate/test_config.dart");
#import("../tests/language/test_config.dart");
#import("../tests/lib/test_config.dart");
#import("../tests/standalone/test_config.dart");
@@ -57,6 +56,7 @@ final TEST_SUITE_DIRECTORIES = const [
'tests/benchmark_smoke',
'tests/dom',
'tests/html',
+ 'tests/isolate',
'tests/json',
'utils/tests/css',
'utils/tests/peg',
@@ -113,8 +113,6 @@ main() {
queue.addTestSuite(new LanguageTestSuite(conf));
} else if (key == 'lib') {
queue.addTestSuite(new LibTestSuite(conf));
- } else if (key == 'isolate') {
- queue.addTestSuite(new IsolateTestSuite(conf));
} else if (key == 'utils') {
queue.addTestSuite(new UtilsTestSuite(conf));
} else if (conf['runtime'] == 'vm' && key == 'vm') {

Powered by Google App Engine
This is Rietveld 408576698