aboutsummaryrefslogtreecommitdiff
path: root/buildbot_test_llvm.py
diff options
context:
space:
mode:
authorCaroline Tice <cmtice@google.com>2016-10-10 11:31:54 -0700
committerchrome-bot <chrome-bot@chromium.org>2016-10-10 14:53:41 -0700
commit1ba6d5764234e1df0ff56a256a2e2cae94f28353 (patch)
tree2967685f2ca88eed2718a890148da8f5842420c8 /buildbot_test_llvm.py
parent4bd70465c2e5c60802460aec4fdc698e1cfab8e3 (diff)
downloadtoolchain-utils-1ba6d5764234e1df0ff56a256a2e2cae94f28353.tar.gz
[toolchain-utils] Add --hwtest flag to rotating tester builds.
The rotating testers need to add --hwtest to the trybot builds to get the hwtests to actually run. This CL adds that flag. BUG=None TEST=Tested in role account. Change-Id: I6ef93f529b6616dd8d1c357743593ed369d1022a Reviewed-on: https://chrome-internal-review.googlesource.com/295075 Commit-Ready: Caroline Tice <cmtice@google.com> Tested-by: Caroline Tice <cmtice@google.com> Reviewed-by: Ting-Yuan Huang <laszio@google.com>
Diffstat (limited to 'buildbot_test_llvm.py')
-rwxr-xr-xbuildbot_test_llvm.py10
1 files changed, 7 insertions, 3 deletions
diff --git a/buildbot_test_llvm.py b/buildbot_test_llvm.py
index 69932e53..479a2550 100755
--- a/buildbot_test_llvm.py
+++ b/buildbot_test_llvm.py
@@ -83,12 +83,16 @@ class ToolchainVerifier(object):
Launch trybot, get image names, create crosperf experiment file, run
crosperf, and copy images into seven-day report directories.
"""
+ flags = ['--hwtest']
date_str = datetime.date.today()
description = 'master_%s_%s_%s' % (self._patches_string, self._build,
date_str)
- trybot_image = buildbot_utils.GetTrybotImage(self._chromeos_root,
- self._build, self._patches,
- description)
+ trybot_image = buildbot_utils.GetTrybotImage(
+ self._chromeos_root,
+ self._build,
+ self._patches,
+ description,
+ other_flags=flags)
if len(trybot_image) == 0:
self._l.LogError('Unable to find trybot_image for %s!' % description)
return 1