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

Unified Diff: tools/test.dart

Issue 9147058: Hook up the dartdoc tests to test.py, test.dart, and frog/presubmit.py. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebase and upload. Created 8 years, 11 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 | « frog/presubmit.py ('k') | tools/testing/dart/test_options.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 de31ebd18b994d1f54c22f5b0093db700f2d85f5..c776db0c0139b55decc073fc071f3448e58b40e6 100755
--- a/tools/test.dart
+++ b/tools/test.dart
@@ -24,6 +24,7 @@
#import("../frog/tests/leg_only/test_config.dart");
#import("../frog/tests/await/test_config.dart");
#import("../utils/tests/css/test_config.dart");
+#import("../utils/tests/dartdoc/test_config.dart");
#import("../utils/tests/peg/test_config.dart");
main() {
@@ -90,6 +91,9 @@ main() {
if (selectors.containsKey('css')) {
queue.addTestSuite(new CssTestSuite(conf));
}
+ if (selectors.containsKey('dartdoc')) {
+ queue.addTestSuite(new DartdocTestSuite(conf));
+ }
if (selectors.containsKey('peg')) {
queue.addTestSuite(new PegTestSuite(conf));
}
« no previous file with comments | « frog/presubmit.py ('k') | tools/testing/dart/test_options.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698