aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Matt Sarett <msarett@google.com>2017-02-02 09:40:54 -0800
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-02-02 21:16:21 +0000
commit14454756d05179e026b682108961acf8bd290b9f (patch)
tree6be01a67a380be9e16a99c52e372163bc2b094db
parent78b6786beccbee951be407b87a6871d10c81179f (diff)
Blacklist large images on 32-bit Win 2k8
BUG=skia: Change-Id: Ic423d2042f6b8b0bbadfd2ee1dc8b3f9f5992523 Reviewed-on: https://skia-review.googlesource.com/7940 Reviewed-by: Leon Scroggins <scroggo@google.com> Commit-Queue: Matt Sarett <msarett@google.com>
-rw-r--r--infra/bots/recipe_modules/sktest/api.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/infra/bots/recipe_modules/sktest/api.py b/infra/bots/recipe_modules/sktest/api.py
index 2b1713b4fe..fdc61baa4c 100644
--- a/infra/bots/recipe_modules/sktest/api.py
+++ b/infra/bots/recipe_modules/sktest/api.py
@@ -292,8 +292,9 @@ def dm_flags(bot):
# skbug.com/4888
# Blacklist RAW images (and a few large PNGs) on GPU bots
- # until we can resolve failures
- if 'GPU' in bot:
+ # until we can resolve failures.
+ # Also blacklisted on 32-bit Win2k8 for F16 OOM errors.
+ if 'GPU' in bot or ('Win2k8' in bot and 'x86-' in bot):
blacklist('_ image _ interlaced1.png')
blacklist('_ image _ interlaced2.png')
blacklist('_ image _ interlaced3.png')