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

Unified Diff: tools/test.dart

Issue 9036009: Add client/tests/client web tests to the test.dart test script. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Final changes Created 8 years, 12 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 | « compiler/tests/dartc/dartc.status ('k') | tools/testing/dart/browser_test.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 c373427add3c1dc25e5c4b79c02c24068fdbd31b..de31ebd18b994d1f54c22f5b0093db700f2d85f5 100755
--- a/tools/test.dart
+++ b/tools/test.dart
@@ -18,6 +18,7 @@
#import("../samples/tests/samples/test_config.dart");
#import("../client/tests/dartc/test_config.dart");
#import("../compiler/tests/dartc/test_config.dart");
+#import("../client/tests/client/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");
@@ -95,6 +96,9 @@ main() {
if (selectors.containsKey('await')) {
queue.addTestSuite(new AwaitTestSuite(conf));
}
+ if (selectors.containsKey('client')) {
+ queue.addTestSuite(new ClientTestSuite(conf));
+ }
return true;
}
« no previous file with comments | « compiler/tests/dartc/dartc.status ('k') | tools/testing/dart/browser_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698