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

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
Index: tools/test.dart
diff --git a/tools/test.dart b/tools/test.dart
index 48397d84eb73f46cd12d476bba464b1ab4f9785d..cda68b69d361c7eed44fbb4ee5be592a519e16e2 100755
--- a/tools/test.dart
+++ b/tools/test.dart
@@ -35,7 +35,6 @@
#import("../runtime/tests/vm/test_config.dart");
#import("../samples/tests/samples/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
@@ -56,6 +55,7 @@ final TEST_SUITE_DIRECTORIES = const [
'tests/isolate',
'tests/json',
'tests/language',
+ 'tests/standalone',
'tests/utils',
'utils/tests/css',
'utils/tests/peg',
@@ -102,8 +102,6 @@ main() {
for (String key in selectors.getKeys()) {
if (key == 'samples') {
queue.addTestSuite(new SamplesTestSuite(conf));
- } else if (key == 'standalone') {
- queue.addTestSuite(new StandaloneTestSuite(conf));
} else if (key == 'co19') {
queue.addTestSuite(new Co19TestSuite(conf));
} else if (conf['runtime'] == 'vm' && key == 'vm') {

Powered by Google App Engine
This is Rietveld 408576698