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

Unified Diff: dart/frog/scripts/buildbot_annotated_steps.py

Issue 9813012: Add "mock" compilation feature to dart2js and use it to improve test coverage. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Address review comments Created 8 years, 9 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
Index: dart/frog/scripts/buildbot_annotated_steps.py
diff --git a/dart/frog/scripts/buildbot_annotated_steps.py b/dart/frog/scripts/buildbot_annotated_steps.py
index ffe89fc37c89ea8d53e4f689970c39d7c92fb4e3..00c59c547acd798e6557c8e4995834fb84e61c99 100644
--- a/dart/frog/scripts/buildbot_annotated_steps.py
+++ b/dart/frog/scripts/buildbot_annotated_steps.py
@@ -180,7 +180,9 @@ def TestFrog(component, mode, system, browser, option, flags):
# isolate tests, so we're switching to use Chrome in the short term.
if browser == 'chrome' and system == 'linux':
TestStep('browser', mode, system, 'frogium', tests, flags)
- TestStep('browser', mode, system, 'legium', tests, flags)
+ TestStep('browser', mode, system, 'legium', [], flags)
+ TestStep('browser', mode, system, 'legium_extra',
+ ['leg_only', 'frog_native'], flags)
else:
additional_flags = ['--browser=' + browser]
if system.startswith('win') and browser == 'ie':

Powered by Google App Engine
This is Rietveld 408576698