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

Unified Diff: tools/test.dart

Issue 9369006: First prototype of import map generator. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix path to JSON. Created 8 years, 10 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 | « corelib/src/expect.dart ('k') | utils/import_mapper/import_mapper.dart » ('j') | 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 69844e60d1f5d8332f1f27b2931ce7e3a3293d7c..c4b3c422090bb55f2e21536b5fcfc85c2b3eafa0 100755
--- a/tools/test.dart
+++ b/tools/test.dart
@@ -26,6 +26,7 @@
#import("../frog/tests/await/test_config.dart");
#import("../utils/tests/css/test_config.dart");
#import("../utils/tests/dartdoc/test_config.dart");
+#import("../utils/tests/import_mapper/test_config.dart");
#import("../utils/tests/peg/test_config.dart");
main() {
@@ -99,6 +100,9 @@ main() {
if (selectors.containsKey('dartdoc')) {
queue.addTestSuite(new DartdocTestSuite(conf));
}
+ if (selectors.containsKey('import_mapper')) {
+ queue.addTestSuite(new ImportMapperTestSuite(conf));
+ }
if (selectors.containsKey('peg')) {
queue.addTestSuite(new PegTestSuite(conf));
}
« no previous file with comments | « corelib/src/expect.dart ('k') | utils/import_mapper/import_mapper.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698