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

Unified Diff: tools/test.dart

Issue 10244009: test rename overhaul: step 7 - corelib 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
« no previous file with comments | « tests/corelib/unicode_test.dart ('k') | no next file » | 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 8d5ca761298e1386cac462012fbd59069c5f8c30..6615240cfee9d3145f3fd41135252a876f64d5ec 100755
--- a/tools/test.dart
+++ b/tools/test.dart
@@ -39,7 +39,6 @@
#import("../runtime/tests/vm/test_config.dart");
#import("../samples/tests/samples/test_config.dart");
#import("../tests/co19/test_config.dart");
-#import("../tests/corelib/test_config.dart");
#import("../tests/isolate/test_config.dart");
#import("../tests/language/test_config.dart");
#import("../tests/lib/test_config.dart");
@@ -55,6 +54,7 @@
*/
final TEST_SUITE_DIRECTORIES = const [
Ivan Posva 2012/04/27 05:20:26 @whesse: Why do we need to list all of the directo
Bill Hesse 2012/04/27 07:14:11 I would like to make this a goal, but there is one
Ivan Posva 2012/04/27 08:49:41 As far as I know standard test suites do not have
'tests/benchmark_smoke',
+ 'tests/corelib',
'tests/dom',
'tests/html',
'tests/json',
@@ -105,8 +105,6 @@ main() {
queue.addTestSuite(new SamplesTestSuite(conf));
} else if (key == 'standalone') {
queue.addTestSuite(new StandaloneTestSuite(conf));
- } else if (key == 'corelib') {
- queue.addTestSuite(new CorelibTestSuite(conf));
} else if (key == 'co19') {
queue.addTestSuite(new Co19TestSuite(conf));
} else if (key == 'language') {
« no previous file with comments | « tests/corelib/unicode_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698