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

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: small changes 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 bd0a3e5e72bb14ef3d4cb29d5dac1e4f2e96f372..0db2214c450a35a1dd0a71d6175c2ad143f8308b 100755
--- a/tools/test.dart
+++ b/tools/test.dart
@@ -17,6 +17,7 @@
#import("../runtime/tests/vm/test_config.dart");
#import("../samples/tests/samples/test_config.dart");
#import("../client/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");
@@ -90,6 +91,9 @@ main() {
if (selectors.containsKey('await')) {
queue.addTestSuite(new AwaitTestSuite(conf));
}
+ if (selectors.containsKey('client')) {
+ queue.addTestSuite(new ClientTestSuite(conf));
+ }
return true;
}

Powered by Google App Engine
This is Rietveld 408576698