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

Unified Diff: tools/test.dart

Issue 8799009: Add support for client/dartc compilation only tests. (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
Index: tools/test.dart
diff --git a/tools/test.dart b/tools/test.dart
index f1af2b6f1bdea78128d25ae7270f52ed64e6e293..62d1f48600179169e3cf9212d4a588fd7bd1a227 100755
--- a/tools/test.dart
+++ b/tools/test.dart
@@ -16,6 +16,7 @@
#import("../tests/stub-generator/test_config.dart");
#import("../runtime/tests/vm/test_config.dart");
#import("../samples/tests/samples/test_config.dart");
+#import("../client/tests/dartc/test_config.dart");
#import("../frog/tests/frog/test_config.dart");
#import("../frog/tests/leg/test_config.dart");
#import("../frog/tests/leg_only/test_config.dart");
@@ -72,6 +73,9 @@ main() {
if (selectors.containsKey('leg_only')) {
queue.addTestSuite(new LegOnlyTestSuite(conf));
}
+ if (selectors.containsKey('dartc')) {
+ queue.addTestSuite(new ClientDartcTestSuite(conf));
+ }
return true;
}

Powered by Google App Engine
This is Rietveld 408576698