Blacklist certain win7 gms that are never finishing on dm

BUG=skia:

Review URL: https://codereview.chromium.org/1013483004
This commit is contained in:
egdaniel 2015-03-19 13:09:17 -07:00 committed by Commit bot
parent 5553bedf60
commit 89c2a540a3
2 changed files with 13 additions and 1 deletions

View File

@ -287,6 +287,12 @@
"_",
"_",
"subset",
"_"
"_",
"msaa16",
"gm",
"colorwheelnative",
"pdf",
"gm",
"fontmgr_iter_factory"
]
}

View File

@ -56,6 +56,12 @@ def get_args(bot):
blacklist.extend('_ image _'.split(' '))
blacklist.extend('_ subset _'.split(' '))
# Certain gm's on win7 gpu and pdf are never finishing and keeping the test
# running forever
if 'Win7' in bot:
blacklist.extend('msaa16 gm colorwheelnative'.split(' '))
blacklist.extend('pdf gm fontmgr_iter_factory'.split(' '))
# Drawing SKPs or images into GPU canvases is a New Thing.
# It seems like we're running out of RAM on some Android bots, so start off
# with a very wide blacklist disabling all these tests on all Android bots.