Try blacklisting RAW images on Nexus 9
BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2141923006 Review-Url: https://codereview.chromium.org/2141923006
This commit is contained in:
parent
0358a6ac00
commit
f461e7c227
@ -1664,6 +1664,86 @@
|
||||
"image",
|
||||
"_",
|
||||
".SRW",
|
||||
"_",
|
||||
"image",
|
||||
"_",
|
||||
".arw",
|
||||
"_",
|
||||
"image",
|
||||
"_",
|
||||
".cr2",
|
||||
"_",
|
||||
"image",
|
||||
"_",
|
||||
".dng",
|
||||
"_",
|
||||
"image",
|
||||
"_",
|
||||
".nef",
|
||||
"_",
|
||||
"image",
|
||||
"_",
|
||||
".nrw",
|
||||
"_",
|
||||
"image",
|
||||
"_",
|
||||
".orf",
|
||||
"_",
|
||||
"image",
|
||||
"_",
|
||||
".raf",
|
||||
"_",
|
||||
"image",
|
||||
"_",
|
||||
".rw2",
|
||||
"_",
|
||||
"image",
|
||||
"_",
|
||||
".pef",
|
||||
"_",
|
||||
"image",
|
||||
"_",
|
||||
".srw",
|
||||
"_",
|
||||
"image",
|
||||
"_",
|
||||
".ARW",
|
||||
"_",
|
||||
"image",
|
||||
"_",
|
||||
".CR2",
|
||||
"_",
|
||||
"image",
|
||||
"_",
|
||||
".DNG",
|
||||
"_",
|
||||
"image",
|
||||
"_",
|
||||
".NEF",
|
||||
"_",
|
||||
"image",
|
||||
"_",
|
||||
".NRW",
|
||||
"_",
|
||||
"image",
|
||||
"_",
|
||||
".ORF",
|
||||
"_",
|
||||
"image",
|
||||
"_",
|
||||
".RAF",
|
||||
"_",
|
||||
"image",
|
||||
"_",
|
||||
".RW2",
|
||||
"_",
|
||||
"image",
|
||||
"_",
|
||||
".PEF",
|
||||
"_",
|
||||
"image",
|
||||
"_",
|
||||
".SRW",
|
||||
"--noRAW_threading"
|
||||
],
|
||||
"Test-Android-GCC-NexusPlayer-CPU-SSSE3-x86-Release": [
|
||||
|
@ -221,6 +221,10 @@ def get_args(bot):
|
||||
for raw_ext in r:
|
||||
blacklist.extend(('_ image _ .%s' % raw_ext).split(' '))
|
||||
|
||||
if 'Nexus9' in bot:
|
||||
for raw_ext in r:
|
||||
blacklist.extend(('_ image _ .%s' % raw_ext).split(' '))
|
||||
|
||||
# Large image that overwhelms older Mac bots
|
||||
if 'MacMini4.1-GPU' in bot:
|
||||
blacklist.extend('_ image _ abnormal.wbmp'.split(' '))
|
||||
|
Loading…
Reference in New Issue
Block a user