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

Unified Diff: frog/scripts/buildbot_annotated_steps.py

Issue 9368008: Additional flakiness reducing changes. Also rerun DRT on false positive tests. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' 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 | tools/testing/dart/test_runner.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: frog/scripts/buildbot_annotated_steps.py
===================================================================
--- frog/scripts/buildbot_annotated_steps.py (revision 4094)
+++ frog/scripts/buildbot_annotated_steps.py (working copy)
@@ -166,7 +166,12 @@
if arch is None:
return 1
- status = BuildFrog(arch, mode, system)
+ status = 0
+ if arch == 'frogium':
+ # Use release VM on frogium bots, so our tests run faster.
+ status = BuildFrog(arch, 'release', system)
Emily Fortuna 2012/02/09 23:29:06 we use "debug" mode on other things so that the ti
+ else:
+ status = BuildFrog(arch, mode, system)
if status != 0:
print '@@@STEP_FAILURE@@@'
return status
« no previous file with comments | « no previous file | tools/testing/dart/test_runner.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698