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

Unified Diff: tools/test.dart

Issue 9990009: Revert "Simplify tests under utils/tests to follow StandardTestSuite (Closed) Base URL: http://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
===================================================================
--- tools/test.dart (revision 6209)
+++ tools/test.dart (working copy)
@@ -45,6 +45,9 @@
#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
@@ -53,9 +56,6 @@
* basically add the directory here and you're done.)
*/
final TEST_SUITE_DIRECTORIES = const [
- 'utils/tests/css',
- 'utils/tests/import_mapper',
- 'utils/tests/peg',
'utils/tests/pub'
];
@@ -139,6 +139,15 @@
if (conf['compiler'] == '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