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

Unified Diff: test/run_all.dart

Issue 11275029: Support for specifying an output directory (issue #106) (Closed) Base URL: git@github.com:dart-lang/dart-web-components.git@master
Patch Set: Created 8 years, 2 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 | « test/run.sh ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/run_all.dart
diff --git a/test/run_all.dart b/test/run_all.dart
index 145117bfaf1158527ecadc42bf43fba29ea33d4f..4351fd5ba0b675368d197e4fe33e9d9907f911b4 100644
--- a/test/run_all.dart
+++ b/test/run_all.dart
@@ -16,6 +16,7 @@ import 'analyzer_test.dart' as analyzer_test;
import 'emitter_test.dart' as emitter_test;
import 'utils_test.dart' as utils_test;
import 'watcher_test.dart' as watcher_test;
+import 'directive_parser_test.dart' as directive_test;
// TODO(jmesserly): command line args to filter tests
main() {
@@ -28,6 +29,7 @@ main() {
if (pattern.hasMatch('emitter_test.dart')) emitter_test.main();
if (pattern.hasMatch('utils_test.dart')) utils_test.main();
if (pattern.hasMatch('watcher_test.dart')) watcher_test.main();
+ if (pattern.hasMatch('directive_parser_test.dart')) directive_test.main();
// TODO(jmesserly): should have listSync for scripting...
var lister = new Directory.fromPath(new Path('data/input')).list();
« no previous file with comments | « test/run.sh ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698