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

Unified Diff: tools/test.dart

Issue 9015005: Add dartc junit tests to test.dart. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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 0db2214c450a35a1dd0a71d6175c2ad143f8308b..b3caac1377610cf61481d02d80ad000cefab3010 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("../client/tests/client/test_config.dart");
+#import("../compiler/tests/dartc/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");
@@ -82,6 +83,9 @@ main() {
if (conf['component'] == 'dartc' && selectors.containsKey('dartc')) {
queue.addTestSuite(new ClientDartcTestSuite(conf));
}
+ if (conf['component'] == 'dartc' && selectors.containsKey('dartc')) {
ngeoffray 2011/12/30 10:20:06 This is the same condition than line 83.
Bill Hesse 2011/12/30 16:04:33 Yes, but we want to keep all of the test suites in
+ queue.addTestSuite(new JUnitDartcTestSuite(conf));
+ }
if (selectors.containsKey('css')) {
queue.addTestSuite(new CssTestSuite(conf));
}

Powered by Google App Engine
This is Rietveld 408576698