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

Unified Diff: tools/test.dart

Issue 10343008: reenable some dartc tests that have been disabled accidentally. Move (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 8 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 aee9f2ff2f6433d217db5c3cd65b222df2335352..72089e4a684ca12756fd73cd1d0d88d51178a05d 100755
--- a/tools/test.dart
+++ b/tools/test.dart
@@ -29,10 +29,10 @@
#import("testing/dart/test_options.dart");
#import("testing/dart/test_suite.dart");
-#import("../client/tests/dartc/test_config.dart");
#import("../compiler/tests/dartc/test_config.dart");
#import("../frog/tests/await/test_config.dart");
#import("../runtime/tests/vm/test_config.dart");
+#import("../samples/tests/dartc/test_config.dart");
#import("../tests/co19/test_config.dart");
/**
@@ -109,8 +109,7 @@ main() {
// [TEST_SUITE_DIRECTORIES]).
queue.addTestSuite(new VMTestSuite(conf));
} else if (conf['compiler'] == 'dartc' && key == 'dartc') {
- queue.addTestSuite(new ClientDartcTestSuite(conf));
- } else if (conf['compiler'] == 'dartc' && key == 'dartc') {
Emily Fortuna 2012/05/02 22:34:41 wow, this is kindof hilarious.
+ queue.addTestSuite(new SamplesDartcTestSuite(conf));
queue.addTestSuite(new JUnitDartcTestSuite(conf));
} else if (key == 'await') {
queue.addTestSuite(new AwaitTestSuite(conf));

Powered by Google App Engine
This is Rietveld 408576698