aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra
diff options
context:
space:
mode:
authorGravatar Matt Sarett <msarett@google.com>2017-05-22 10:34:41 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-05-22 15:33:49 +0000
commit929bfeb17c4d6c422c17027a18640af8d710d030 (patch)
tree448d833e8467faac13b6426e1a120ca036509746 /infra
parentb35cb3143e1f999095af28e0de2ace3ff4ef6b9e (diff)
Blacklist memory intensive tests on 32-bit bots
This is to fix OOM errors on Windows bots. Bug: skia: Change-Id: I308c77bde51d3c6b069f35b2c8d0e43e5b12a93f Reviewed-on: https://skia-review.googlesource.com/17453 Reviewed-by: Brian Osman <brianosman@google.com> Commit-Queue: Matt Sarett <msarett@google.com>
Diffstat (limited to 'infra')
-rw-r--r--infra/bots/recipes/test.expected/Test-Win8-MSVC-Golo-CPU-AVX-x86-Debug.json4
-rw-r--r--infra/bots/recipes/test.py16
2 files changed, 14 insertions, 6 deletions
diff --git a/infra/bots/recipes/test.expected/Test-Win8-MSVC-Golo-CPU-AVX-x86-Debug.json b/infra/bots/recipes/test.expected/Test-Win8-MSVC-Golo-CPU-AVX-x86-Debug.json
index de3127c560..0f5de1bd94 100644
--- a/infra/bots/recipes/test.expected/Test-Win8-MSVC-Golo-CPU-AVX-x86-Debug.json
+++ b/infra/bots/recipes/test.expected/Test-Win8-MSVC-Golo-CPU-AVX-x86-Debug.json
@@ -521,6 +521,10 @@
"complexclip4_aa",
"_",
"image",
+ "f16",
+ "_",
+ "_",
+ "image",
"_",
"interlaced1.png",
"_",
diff --git a/infra/bots/recipes/test.py b/infra/bots/recipes/test.py
index ac53e89d95..2bd859e0b2 100644
--- a/infra/bots/recipes/test.py
+++ b/infra/bots/recipes/test.py
@@ -338,12 +338,16 @@ def dm_flags(bot):
# skbug.com/4888
# Blacklist RAW images (and a few large PNGs) on GPU bots
# until we can resolve failures.
- # Also blacklisted on 32-bit Win2k8 for F16 OOM errors.
- # Test-Win8-MSVC-Golo-CPU-AVX-x86-Debug is running out of memory on the
- # interlaced images, so blacklist those. For simplicity, blacklist the
- # RAW images which also use lots of memory.
- if ('GPU' in bot or ('Win2k8' in bot and 'x86-' in bot)
- or 'Test-Win8-MSVC-Golo-CPU-AVX-x86-Debug' in bot):
+ if 'GPU' in bot:
+ blacklist('_ image _ interlaced1.png')
+ blacklist('_ image _ interlaced2.png')
+ blacklist('_ image _ interlaced3.png')
+ for raw_ext in r:
+ blacklist('_ image _ .%s' % raw_ext)
+
+ # Blacklist memory intensive tests on 32-bit bots.
+ if ('Win2k8' in bot or 'Win8' in bot) and 'x86-' in bot:
+ blacklist('_ image f16 _')
blacklist('_ image _ interlaced1.png')
blacklist('_ image _ interlaced2.png')
blacklist('_ image _ interlaced3.png')