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>
This commit is contained in:
parent
b35cb3143e
commit
929bfeb17c
@ -521,6 +521,10 @@
|
||||
"complexclip4_aa",
|
||||
"_",
|
||||
"image",
|
||||
"f16",
|
||||
"_",
|
||||
"_",
|
||||
"image",
|
||||
"_",
|
||||
"interlaced1.png",
|
||||
"_",
|
||||
|
@ -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')
|
||||
|
Loading…
Reference in New Issue
Block a user