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

Unified Diff: tools/test.dart

Issue 8889016: Enable Dartium tests in tools/test.dart. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Disable dartc test suite on non-dartc components. 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 | « no previous file | 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 2af00c8f257074b53e5642c167d96c38b4752ab3..bd0a3e5e72bb14ef3d4cb29d5dac1e4f2e96f372 100755
--- a/tools/test.dart
+++ b/tools/test.dart
@@ -78,7 +78,7 @@ main() {
if (selectors.containsKey('leg_only')) {
queue.addTestSuite(new LegOnlyTestSuite(conf));
}
- if (selectors.containsKey('dartc')) {
+ if (conf['component'] == 'dartc' && selectors.containsKey('dartc')) {
queue.addTestSuite(new ClientDartcTestSuite(conf));
}
if (selectors.containsKey('css')) {
« no previous file with comments | « no previous file | tools/testing/dart/browser_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698