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

Unified Diff: slave/skia_slave_scripts/flavor_utils/arm64model_build_step_utils.py

Issue 217423024: run arm64_make with sh -x (Closed) Base URL: https://skia.googlesource.com/buildbot.git@master
Patch Set: Created 6 years, 9 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: slave/skia_slave_scripts/flavor_utils/arm64model_build_step_utils.py
diff --git a/slave/skia_slave_scripts/flavor_utils/arm64model_build_step_utils.py b/slave/skia_slave_scripts/flavor_utils/arm64model_build_step_utils.py
index 1729fd51573983ff7159991a42e946f684cf6c4e..46dd9da23cd200879d5a319c70ddd3af9dc4bf72 100644
--- a/slave/skia_slave_scripts/flavor_utils/arm64model_build_step_utils.py
+++ b/slave/skia_slave_scripts/flavor_utils/arm64model_build_step_utils.py
@@ -61,10 +61,11 @@ class Arm64ModelBuildStepUtils(SshBuildStepUtils):
assert os.path.isdir(toolchain_bin)
make_cmd = [
+ 'sh', '-x',
os.path.join(platform_bin, 'arm64_make'),
'-o', self._build_dir,
'-c', os.path.join(toolchain_bin, 'aarch64-linux-gnu-gcc'),
'-x', os.path.join(toolchain_bin, 'aarch64-linux-gnu-g++'),
'-t', self._step.configuration,
]
- shell_utils.run(make_cmd, log_in_real_time=False)
+ shell_utils.run(make_cmd)
« 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