Blacklist GLPrograms on Angle Debug bot

BUG=skia:4717
GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1527323003

Review URL: https://codereview.chromium.org/1527323003
This commit is contained in:
joshualitt 2015-12-18 06:50:59 -08:00 committed by Commit bot
parent b204fc61f7
commit b81cecad37
2 changed files with 6 additions and 1 deletions

View File

@ -2179,6 +2179,8 @@
"_",
"image",
"_",
"interlaced3.png"
"interlaced3.png",
"--match",
"~GLPrograms"
]
}

View File

@ -194,6 +194,9 @@ def get_args(bot):
match.append('~bleed_image') # skia:4367
match.append('~ReadPixels') # skia:4368
if 'ANGLE' in bot and 'Debug' in bot:
match.append('~GLPrograms') # skia:4717
if match:
args.append('--match')
args.extend(match)