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

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

Issue 15782007: Bugfix in bots/cross-vm.py (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 7 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/bots/cross-vm.py
diff --git a/tools/bots/cross-vm.py b/tools/bots/cross-vm.py
index 42e1916bc4a826d086e182e2e81fe8e477aecd1d..11478a4ab4e1115808fcb759bce842b7664c657b 100644
--- a/tools/bots/cross-vm.py
+++ b/tools/bots/cross-vm.py
@@ -83,14 +83,14 @@ def cross_compiling_builder(arch, mode):
run([GSUTIL, 'setacl', 'public-read', uri])
elif num_run == 2:
with bot.BuildStep('tests'):
- uri = "%s/%s" % (GCS_BUCKET, recording)
- run([GSUTIL, 'cp', uri, recording])
+ uri = "%s/%s" % (GCS_BUCKET, recording_out)
+ run([GSUTIL, 'cp', uri, recording_out])
run(test_args + ['--mode=' + mode, '--arch=' + arch,
'--replay_from_file=' + recording_out])
with bot.BuildStep('checked_tests'):
- uri = "%s/%s" % (GCS_BUCKET, checked_recording)
- run([GSUTIL, 'cp', uri, checked_recording])
+ uri = "%s/%s" % (GCS_BUCKET, checked_recording_out)
+ run([GSUTIL, 'cp', uri, checked_recording_out])
run(test_args + ['--mode=' + mode, '--arch=' + arch, '--checked',
'--replay_from_file=' + checked_recording_out])
else:
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698