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

Unified Diff: frog/presubmit.py

Issue 9555013: Get dartdoc in the SDK and working correctly. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update copyright date. 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 | « no previous file | frog/reader.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: frog/presubmit.py
diff --git a/frog/presubmit.py b/frog/presubmit.py
index 40ea6729ba9c3d244dd0e44157a958d34630733a..ed6bc85de83ee3f52c9fd8512ec9edc49f6815ce 100755
--- a/frog/presubmit.py
+++ b/frog/presubmit.py
@@ -145,10 +145,14 @@ def main():
# than pain.
# Run frogsh on most of the tests.
cmd = test_cmd + ['--component=frogsh', 'language', 'corelib',
- 'isolate', 'peg', 'frog', 'css', 'dartdoc',
- 'frog_native']
+ 'isolate', 'peg', 'frog', 'css', 'frog_native']
RunCommand(*cmd, verbose=True)
+ # Run the "utils" tests which includes dartdoc. Frog/leg changes often
+ # break dartdoc and this tries to catch those.
+ cmd = test_cmd + ['--component=vm', 'utils']
ahe 2012/03/03 08:59:15 The tests are ordered by "first crawl, then walk,
+ RunCommand(*cmd, verbose=True)
+
# Run leg unit tests.
cmd = test_cmd + ['--component=vm', 'leg']
RunCommand(*cmd, verbose=True)
« no previous file with comments | « no previous file | frog/reader.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698