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

Unified Diff: frog/scripts/buildbot_annotated_steps.py

Issue 8505040: Additional fixes for the bot (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years, 1 month 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 | tests/language/language.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: frog/scripts/buildbot_annotated_steps.py
diff --git a/frog/scripts/buildbot_annotated_steps.py b/frog/scripts/buildbot_annotated_steps.py
index bdeadd251e9c23a49d943b445874068446076c12..e433c6b9c3f0dc607fda67fe5780f9a6deef8758 100644
--- a/frog/scripts/buildbot_annotated_steps.py
+++ b/frog/scripts/buildbot_annotated_steps.py
@@ -43,7 +43,7 @@ def ConvertConfiguration(arch, mode):
testpy_mode = 'release'
flags = None
if mode == 'debug':
- flags = '--enable_asserts --enable_type_checks'
+ flags = '--checked'
return (testpy_mode, flags)
def TestFrog(arch, mode):
@@ -78,7 +78,7 @@ def TestFrog(arch, mode):
'isolate',
'frog']
if flags:
- cmd.extend(['--flag=' + f for f in flags.split(' ')])
+ cmd.append(flags)
status = subprocess.call(cmd)
if status != 0:
« no previous file with comments | « no previous file | tests/language/language.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698