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

Unified Diff: tools/test.dart

Issue 9956037: Simplify tests under utils/tests to follow StandardTestSuite convention. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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 | utils/tests/css/declaration_tests.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 998d0f7bea99dcc75f3713116b2433856a099577..f38c843873ac0313f33963889c3b00f290b1e7a8 100755
--- a/tools/test.dart
+++ b/tools/test.dart
@@ -45,9 +45,6 @@
#import("../frog/tests/leg_only/test_config.dart");
#import("../frog/tests/native/test_config.dart");
#import("../frog/tests/await/test_config.dart");
-#import("../utils/tests/css/test_config.dart");
-#import("../utils/tests/import_mapper/test_config.dart");
-#import("../utils/tests/peg/test_config.dart");
/**
* The directories that contain test suites which follow the conventions
@@ -56,6 +53,9 @@
* basically add the directory here and you're done.)
*/
final TEST_SUITE_DIRECTORIES = const [
+ 'utils/tests/css',
+ 'utils/tests/import_mapper',
+ 'utils/tests/peg',
Emily Fortuna 2012/04/02 20:44:15 I'd cc someone in AAR on this CL just so they're a
'utils/tests/pub'
];
@@ -139,15 +139,6 @@ main() {
if (conf['component'] == 'dartc' && selectors.containsKey('dartc')) {
queue.addTestSuite(new JUnitDartcTestSuite(conf));
}
- if (selectors.containsKey('css')) {
- queue.addTestSuite(new CssTestSuite(conf));
- }
- if (selectors.containsKey('import_mapper')) {
- queue.addTestSuite(new ImportMapperTestSuite(conf));
- }
- if (selectors.containsKey('peg')) {
- queue.addTestSuite(new PegTestSuite(conf));
- }
if (selectors.containsKey('await')) {
queue.addTestSuite(new AwaitTestSuite(conf));
}
« no previous file with comments | « no previous file | utils/tests/css/declaration_tests.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698