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

Unified Diff: tools/bots/compiler.py

Issue 11962042: Added DebugLogger to testing scripts. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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 | « .gitignore ('k') | tools/test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/bots/compiler.py
diff --git a/tools/bots/compiler.py b/tools/bots/compiler.py
index 7e60dddaf75c6c43fdbfe358873ec19d64ade2b9..02d6ecb6b12de2d1728832fe245dc18aa2608c30 100644
--- a/tools/bots/compiler.py
+++ b/tools/bots/compiler.py
@@ -121,7 +121,8 @@ def TestStep(name, mode, system, compiler, runtime, targets, flags):
'--runtime=' + runtime,
'--time',
'--use-sdk',
- '--report'])
+ '--report',
+ '--write-debug-log'])
# TODO(ricow/kustermann): Issue 7339
if runtime == "safari":
@@ -136,7 +137,7 @@ def TestStep(name, mode, system, compiler, runtime, targets, flags):
if IsFirstTestStepCall:
IsFirstTestStepCall = False
else:
- cmd.append('--append_flaky_log')
+ cmd.append('--append_logs')
if flags:
cmd.extend(flags)
« no previous file with comments | « .gitignore ('k') | tools/test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698