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

Unified Diff: tools/test.dart

Issue 9969043: Adds Junit tests in dartc back into test.py (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Some Junit tests have broken in interleaving patches Created 8 years, 9 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
Index: tools/test.dart
diff --git a/tools/test.dart b/tools/test.dart
index 998d0f7bea99dcc75f3713116b2433856a099577..8ddf497676355c05131c9705bcaeee0090ceade0 100755
--- a/tools/test.dart
+++ b/tools/test.dart
@@ -133,10 +133,10 @@ main() {
if (selectors.containsKey('frog_native')) {
queue.addTestSuite(new FrogNativeTestSuite(conf));
}
- if (conf['component'] == 'dartc' && selectors.containsKey('dartc')) {
+ if (conf['compiler'] == 'dartc' && selectors.containsKey('dartc')) {
queue.addTestSuite(new ClientDartcTestSuite(conf));
}
- if (conf['component'] == 'dartc' && selectors.containsKey('dartc')) {
+ if (conf['compiler'] == 'dartc' && selectors.containsKey('dartc')) {
queue.addTestSuite(new JUnitDartcTestSuite(conf));
}
if (selectors.containsKey('css')) {

Powered by Google App Engine
This is Rietveld 408576698