aboutsummaryrefslogtreecommitdiff
path: root/buildbot_test_toolchains.py
diff options
context:
space:
mode:
authorCaroline Tice <cmtice@google.com>2019-12-12 11:37:18 -0800
committerCommit Bot <commit-bot@chromium.org>2019-12-13 01:09:19 +0000
commit2a0bffb6e6eb3ed4caa2f449483e5846e1f72554 (patch)
treeab029e17dc9e3575d825e1189809696dbef35917 /buildbot_test_toolchains.py
parentf4fe66ea31f71b54b18a4e41acb936b500837f30 (diff)
downloadtoolchain-utils-2a0bffb6e6eb3ed4caa2f449483e5846e1f72554.tar.gz
toolchain-utils: Correct argument typo when launching Crosperf.
Use '--intel_pstate=no_hwp', rather than '--no_hwp' (not a valid argument), for launching nightly performance Crosperf tests. BUG=None TEST=Launched crosperf manually on chrotomation2 with this and it worked. Change-Id: Ia6474e3fb99bd30c79e15465dff0b54903e2a6f3 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/third_party/toolchain-utils/+/1965433 Reviewed-by: Tiancong Wang <tcwang@google.com> Reviewed-by: George Burgess <gbiv@chromium.org> Commit-Queue: Caroline Tice <cmtice@chromium.org> Tested-by: Caroline Tice <cmtice@chromium.org>
Diffstat (limited to 'buildbot_test_toolchains.py')
-rwxr-xr-xbuildbot_test_toolchains.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/buildbot_test_toolchains.py b/buildbot_test_toolchains.py
index cc07c8eb..175dae5e 100755
--- a/buildbot_test_toolchains.py
+++ b/buildbot_test_toolchains.py
@@ -239,7 +239,8 @@ class ToolchainComparator(object):
crosperf = os.path.join(TOOLCHAIN_DIR, 'crosperf', 'crosperf')
noschedv2_opts = '--noschedv2' if self._noschedv2 else ''
- command = ('{crosperf} --no_email=True --results_dir={r_dir} --no_hwp '
+ command = ('{crosperf} --no_email=True --results_dir={r_dir} '
+ '--intel_pstate=no_hwp '
'--json_report=True {noschedv2_opts} {exp_file}').format(
crosperf=crosperf,
r_dir=self._reports_dir,