From: Matt Sarett Date: Mon, 22 May 2017 14:34:41 +0000 (-0400) Subject: Blacklist memory intensive tests on 32-bit bots X-Git-Tag: accepted/tizen/5.0/unified/20181102.025319~36^2~92 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=929bfeb17c4d6c422c17027a18640af8d710d030;p=platform%2Fupstream%2FlibSkiaSharp.git 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 Commit-Queue: Matt Sarett --- 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 de3127c..0f5de1b 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 ac53e89..2bd859e 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')