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

Unified Diff: tools/test.dart

Issue 10248007: test rename overhaul: step 8 - language tests (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 8d5ca761298e1386cac462012fbd59069c5f8c30..35edafeb6869e2da86f493f72871f982dddfdb9a 100755
--- a/tools/test.dart
+++ b/tools/test.dart
@@ -41,7 +41,6 @@
#import("../tests/co19/test_config.dart");
#import("../tests/corelib/test_config.dart");
#import("../tests/isolate/test_config.dart");
-#import("../tests/language/test_config.dart");
Bob Nystrom 2012/04/27 15:55:06 \o/
#import("../tests/lib/test_config.dart");
#import("../tests/standalone/test_config.dart");
#import("../tests/utils/test_config.dart");
@@ -58,6 +57,7 @@ final TEST_SUITE_DIRECTORIES = const [
'tests/dom',
'tests/html',
'tests/json',
+ 'tests/language',
'utils/tests/css',
'utils/tests/peg',
'utils/tests/pub',
@@ -109,8 +109,6 @@ main() {
queue.addTestSuite(new CorelibTestSuite(conf));
} else if (key == 'co19') {
queue.addTestSuite(new Co19TestSuite(conf));
- } else if (key == 'language') {
- queue.addTestSuite(new LanguageTestSuite(conf));
} else if (key == 'lib') {
queue.addTestSuite(new LibTestSuite(conf));
} else if (key == 'isolate') {

Powered by Google App Engine
This is Rietveld 408576698