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

Unified Diff: tools/test.dart

Issue 10197008: - Add tests/lib to start testing libraries outside of core. (Closed) Base URL: http://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
===================================================================
--- tools/test.dart (revision 6877)
+++ tools/test.dart (working copy)
@@ -33,6 +33,7 @@
#import("../tests/corelib/test_config.dart");
#import("../tests/isolate/test_config.dart");
#import("../tests/language/test_config.dart");
+#import("../tests/lib/test_config.dart");
#import("../tests/standalone/test_config.dart");
#import("../tests/utils/test_config.dart");
#import("../runtime/tests/vm/test_config.dart");
@@ -111,6 +112,9 @@
if (selectors.containsKey('language')) {
queue.addTestSuite(new LanguageTestSuite(conf));
}
+ if (selectors.containsKey('lib')) {
+ queue.addTestSuite(new LibTestSuite(conf));
+ }
if (selectors.containsKey('isolate')) {
queue.addTestSuite(new IsolateTestSuite(conf));
}

Powered by Google App Engine
This is Rietveld 408576698