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

Unified Diff: dart/tools/bots/cross-vm.py

Issue 96533002: Write .test-outcome.log files for test.py (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 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 | « dart/tools/bots/compiler.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/tools/bots/cross-vm.py
diff --git a/dart/tools/bots/cross-vm.py b/dart/tools/bots/cross-vm.py
index 08ae335a99cb5f807daf8564529db9bbe94b532c..82e46d8e6ff06ca51b58c190e22786fa554b2ae9 100644
--- a/dart/tools/bots/cross-vm.py
+++ b/dart/tools/bots/cross-vm.py
@@ -70,7 +70,7 @@ def target_builder(arch, mode):
test_py = os.path.join('tools', 'test.py')
test_args = [sys.executable, test_py, '--progress=line', '--report',
'--time', '--compiler=none', '--runtime=vm', '--write-debug-log',
- '--mode=' + mode, '--arch=' + arch]
+ '--write-test-outcome-log', '--mode=' + mode, '--arch=' + arch]
revision = int(os.environ['BUILDBOT_GOT_REVISION'])
tarball = tarball_name(arch, mode, revision)
@@ -87,7 +87,7 @@ def target_builder(arch, mode):
run(test_args)
with bot.BuildStep('execute checked_tests'):
- run(test_args + ['--checked'])
+ run(test_args + ['--checked', '--append_logs')
finally:
for path in temporary_files:
if os.path.exists(path):
« no previous file with comments | « dart/tools/bots/compiler.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698