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

Unified Diff: tools/test.dart

Issue 10170040: test rename overhaul: step 11 - tests/utils (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/utils/yaml_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 b763766524fdb47b5c5f35eefe028013acfe6eca..791d2ff779f742cab4540e4894ef11b5abe9052c 100755
--- a/tools/test.dart
+++ b/tools/test.dart
@@ -37,7 +37,6 @@
#import("../tests/co19/test_config.dart");
#import("../tests/lib/test_config.dart");
#import("../tests/standalone/test_config.dart");
-#import("../tests/utils/test_config.dart");
/**
* The directories that contain test suites which follow the conventions
@@ -58,6 +57,7 @@ final TEST_SUITE_DIRECTORIES = const [
'tests/isolate',
'tests/json',
'tests/language',
+ 'tests/utils',
'utils/tests/css',
'utils/tests/peg',
'utils/tests/pub',
@@ -109,8 +109,6 @@ main() {
queue.addTestSuite(new Co19TestSuite(conf));
} else if (key == 'lib') {
queue.addTestSuite(new LibTestSuite(conf));
- } else if (key == 'utils') {
- queue.addTestSuite(new UtilsTestSuite(conf));
} else if (conf['runtime'] == 'vm' && key == 'vm') {
queue.addTestSuite(new VMTestSuite(conf));
queue.addTestSuite(new VMDartTestSuite(conf));
« no previous file with comments | « tests/utils/yaml_test.dart ('k') | tools/test-runtime.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698