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

Unified Diff: tools/test.dart

Issue 9418045: Support for native in leg, and start moving native tests to a specific test suite. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 10 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
« frog/scripts/buildbot_annotated_steps.py ('K') | « tests/co19/co19-leg.status ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/test.dart
===================================================================
--- tools/test.dart (revision 4390)
+++ tools/test.dart (working copy)
@@ -22,6 +22,7 @@
#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/native/test_config.dart");
#import("../frog/tests/await/test_config.dart");
#import("../utils/tests/css/test_config.dart");
#import("../utils/tests/dartdoc/test_config.dart");
@@ -84,6 +85,9 @@
if (selectors.containsKey('leg_only')) {
queue.addTestSuite(new LegOnlyTestSuite(conf));
}
+ if (selectors.containsKey('frog_native')) {
+ queue.addTestSuite(new FrogNativeTestSuite(conf));
+ }
if (conf['component'] == 'dartc' && selectors.containsKey('dartc')) {
queue.addTestSuite(new ClientDartcTestSuite(conf));
}
« frog/scripts/buildbot_annotated_steps.py ('K') | « tests/co19/co19-leg.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698