 Chromium Code Reviews
 Chromium Code Reviews Issue 9555013:
  Get dartdoc in the SDK and working correctly.  (Closed) 
  Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
    
  
    Issue 9555013:
  Get dartdoc in the SDK and working correctly.  (Closed) 
  Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart| 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) |