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

Unified Diff: testing/scripts/mojo_apptests.py

Issue 1412563007: Run Mojo apptests step on Windows main and cq bots. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use sys.executable in mojo_apptests.py commandline. Created 5 years, 2 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 | « testing/buildbot/chromium.win.json ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: testing/scripts/mojo_apptests.py
diff --git a/testing/scripts/mojo_apptests.py b/testing/scripts/mojo_apptests.py
index 49b855da2faa813c5d984837b0ffc295970be96f..2672ad2cd0eeb60b2e8d905acd35ce90b53c6329 100755
--- a/testing/scripts/mojo_apptests.py
+++ b/testing/scripts/mojo_apptests.py
@@ -16,7 +16,7 @@ def main_run(args):
build_dir = os.path.join(common.SRC_DIR, 'out', args.build_config_fs)
with common.temporary_file() as tempfile_path:
- rc = common.run_command([runner, build_dir, '--verbose',
+ rc = common.run_command([sys.executable, runner, build_dir, '--verbose',
'--write-full-results-to', tempfile_path])
with open(tempfile_path) as f:
results = json.load(f)
« no previous file with comments | « testing/buildbot/chromium.win.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698