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

Unified Diff: tools/test.dart

Issue 10252020: test rename overhaul: step 12 - standalone (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
« no previous file with comments | « tests/standalone/timeout_test.dart ('k') | tools/test-runtime.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/test.dart
diff --git a/tools/test.dart b/tools/test.dart
index 5cfa88c6a92038f25f55642962089d02bd16b22e..3fd01924331754937aedcbfeb1a05b7ea310132f 100755
--- a/tools/test.dart
+++ b/tools/test.dart
@@ -34,7 +34,6 @@
#import("../frog/tests/await/test_config.dart");
#import("../runtime/tests/vm/test_config.dart");
#import("../tests/co19/test_config.dart");
-#import("../tests/standalone/test_config.dart");
/**
* The directories that contain test suites which follow the conventions
@@ -57,6 +56,7 @@ final TEST_SUITE_DIRECTORIES = const [
'tests/json',
'tests/language',
'tests/lib',
+ 'tests/standalone',
'tests/utils',
'utils/tests/css',
'utils/tests/peg',
@@ -101,9 +101,7 @@ main() {
var conf = configurationIterator.next();
for (String key in selectors.getKeys()) {
- if (key == 'standalone') {
- queue.addTestSuite(new StandaloneTestSuite(conf));
- } else if (key == 'co19') {
+ if (key == 'co19') {
queue.addTestSuite(new Co19TestSuite(conf));
} else if (conf['runtime'] == 'vm' && key == 'vm') {
queue.addTestSuite(new VMTestSuite(conf));
« no previous file with comments | « tests/standalone/timeout_test.dart ('k') | tools/test-runtime.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698