Blacklist memory intensive tests on 32-bit bots
authorMatt Sarett <msarett@google.com>
Mon, 22 May 2017 14:34:41 +0000 (10:34 -0400)
committerSkia Commit-Bot <skia-commit-bot@chromium.org>
Mon, 22 May 2017 15:33:49 +0000 (15:33 +0000)
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>

infra/bots/recipes/test.expected/Test-Win8-MSVC-Golo-CPU-AVX-x86-Debug.json
infra/bots/recipes/test.py

index de3127c..0f5de1b 100644 (file)
       "complexclip4_aa",
       "_",
       "image",
+      "f16",
+      "_",
+      "_",
+      "image",
       "_",
       "interlaced1.png",
       "_",
index ac53e89..2bd859e 100644 (file)
@@ -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')