aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/bots/recipes/swarm_compile.py
diff options
context:
space:
mode:
authorGravatar borenet <borenet@chromium.org>2016-07-27 14:05:54 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-07-27 14:05:54 -0700
commit151aee4220ae44d5458a41cc2109693a8d285783 (patch)
tree4e0518e06e564d25a99b68c7310dbdc52c8180a8 /infra/bots/recipes/swarm_compile.py
parent25c81d4e651b43b8217c365c87d530036529a673 (diff)
Fix silently-failing compile
Ouch... TBR=rmistry BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2191663002 Review-Url: https://codereview.chromium.org/2191663002
Diffstat (limited to 'infra/bots/recipes/swarm_compile.py')
-rw-r--r--infra/bots/recipes/swarm_compile.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/infra/bots/recipes/swarm_compile.py b/infra/bots/recipes/swarm_compile.py
index 8e7370fdbc..274ca5af95 100644
--- a/infra/bots/recipes/swarm_compile.py
+++ b/infra/bots/recipes/swarm_compile.py
@@ -25,6 +25,7 @@ TEST_BUILDERS = {
'Build-Ubuntu-GCC-Arm7-Debug-Android-Trybot',
'Build-Ubuntu-GCC-Arm7-Release-Android',
'Build-Ubuntu-GCC-Arm7-Release-Android_Vulkan',
+ 'Build-Ubuntu-GCC-x86-Debug',
'Build-Ubuntu-GCC-x86_64-Debug-MSAN',
'Build-Ubuntu-GCC-x86_64-Release-CMake',
'Build-Ubuntu-GCC-x86_64-Release-PDFium',
@@ -83,6 +84,22 @@ def GenTests(api):
mastername = 'client.skia.compile'
slavename = 'skiabot-win-compile-000'
+ buildername = 'Build-Ubuntu-GCC-x86-Debug'
+ yield (
+ api.test('failed_compile') +
+ api.properties(buildername=buildername,
+ mastername=mastername,
+ slavename=slavename,
+ buildnumber=5,
+ revision='abc123',
+ path_config='kitchen',
+ swarm_out_dir='[SWARM_OUT_DIR]') +
+ api.path.exists(
+ api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt')
+ ) +
+ api.step_data('build most', retcode=1)
+ )
+
buildername = 'Build-Win-MSVC-x86-Debug'
yield (
api.test('win_retry_failed_compile') +