aboutsummaryrefslogtreecommitdiff
path: root/buildbot_test_toolchains.py
diff options
context:
space:
mode:
Diffstat (limited to 'buildbot_test_toolchains.py')
-rwxr-xr-xbuildbot_test_toolchains.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/buildbot_test_toolchains.py b/buildbot_test_toolchains.py
index e289b1a5..e3ca3196 100755
--- a/buildbot_test_toolchains.py
+++ b/buildbot_test_toolchains.py
@@ -56,6 +56,8 @@ IMAGE_RE_GROUPS = {
}
TRYBOT_IMAGE_RE = TRYBOT_IMAGE_FS.format(**IMAGE_RE_GROUPS)
+TELEMETRY_AQUARIUM_UNSUPPORTED = ['bob', 'elm', 'veyron_minnie']
+
class ToolchainComparator(object):
"""Class for doing the nightly tests work."""
@@ -175,7 +177,8 @@ class ToolchainComparator(object):
run_local: False
retries: 0
}
-
+ """
+ telemetry_aquarium_tests = """
benchmark: rendering.desktop {
run_local: False
suite: telemetry_Crosperf
@@ -195,6 +198,9 @@ class ToolchainComparator(object):
f.write(experiment_header)
f.write(experiment_tests)
+ if self.board not in TELEMETRY_AQUARIUM_UNSUPPORTED:
+ f.write(telemetry_aquarium_tests)
+
# Now add vanilla to test file.
official_image = """
vanilla_image {
@@ -277,7 +283,7 @@ class ToolchainComparator(object):
print('trybot_url: \
http://cros-goldeneye/chromeos/healthmonitoring/buildDetails?buildbucketId=%s'
% buildbucket_id)
- if len(trybot_image) == 0:
+ if not trybot_image:
self._l.LogError('Unable to find trybot_image!')
return 2