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

Unified Diff: tools/test.dart

Issue 8821009: Add more test configurations. Everything seems covered for frog again now. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years 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 | « frog/tests/await/test_config.dart ('k') | utils/tests/css/test_config.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 62d1f48600179169e3cf9212d4a588fd7bd1a227..6085999d0788367e92d686200db48c7a85cf301d 100755
--- a/tools/test.dart
+++ b/tools/test.dart
@@ -20,6 +20,9 @@
#import("../frog/tests/frog/test_config.dart");
#import("../frog/tests/leg/test_config.dart");
#import("../frog/tests/leg_only/test_config.dart");
+#import("../frog/tests/await/test_config.dart");
+#import("../utils/tests/css/test_config.dart");
+#import("../utils/tests/peg/test_config.dart");
main() {
var startTime = new Date.now();
@@ -76,6 +79,15 @@ main() {
if (selectors.containsKey('dartc')) {
queue.addTestSuite(new ClientDartcTestSuite(conf));
}
+ if (selectors.containsKey('css')) {
+ queue.addTestSuite(new CssTestSuite(conf));
+ }
+ if (selectors.containsKey('peg')) {
+ queue.addTestSuite(new PegTestSuite(conf));
+ }
+ if (selectors.containsKey('await')) {
+ queue.addTestSuite(new AwaitTestSuite(conf));
+ }
return true;
}
« no previous file with comments | « frog/tests/await/test_config.dart ('k') | utils/tests/css/test_config.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698