Omit more shapes tests for ANGLE Release.

Bug: skia:6534
Change-Id: I182a207ea827451daad5ed7f982289c0a29ce24d
No-Try: true
Reviewed-on: https://skia-review.googlesource.com/17929
Reviewed-by: Brian Osman <brianosman@google.com>
Commit-Queue: Ben Wagner <benjaminwagner@google.com>
This commit is contained in:
Ben Wagner 2017-05-25 12:48:16 -04:00 committed by Skia Commit-Bot
parent 09bcf735f8
commit 9b51d1484a
3 changed files with 11 additions and 3 deletions

View File

@ -156,8 +156,10 @@
"--match",
"~native_image_to_raster_surface",
"~shapes_mixed_10000_32x33",
"~shapes_rrect_10000_32x32",
"~shapes_oval_10000_32x32",
"~shapes_oval_10000_32x33",
"~shapes_rect_100_500x500",
"~shapes_rrect_10000_32x32",
"~inc0.gif",
"~inc1.gif",
"~incInterlaced.gif",

View File

@ -156,6 +156,8 @@
"--match",
"~native_image_to_raster_surface",
"~shapes_mixed_10000_32x33",
"~shapes_rect_100_500x500",
"~shapes_rrect_10000_32x32",
"~inc0.gif",
"~inc1.gif",
"~incInterlaced.gif",

View File

@ -151,14 +151,18 @@ def nanobench_flags(bot):
match.append('~Xfermode') # skia:6691
if 'ANGLE' in bot and any('msaa' in x for x in configs):
match.append('~native_image_to_raster_surface') # skia:6457
if 'ANGLE' in bot and 'Radeon' in bot:
if 'ANGLE' in bot and 'Radeon' in bot and 'Release' in bot:
# skia:6534
match.append('~shapes_mixed_10000_32x33')
match.append('~shapes_rrect_10000_32x32')
match.append('~shapes_oval_10000_32x32')
match.append('~shapes_oval_10000_32x33')
match.append('~shapes_rect_100_500x500')
match.append('~shapes_rrect_10000_32x32')
if 'ANGLE' in bot and 'GTX960' in bot and 'Release' in bot:
# skia:6534
match.append('~shapes_mixed_10000_32x33')
match.append('~shapes_rect_100_500x500')
match.append('~shapes_rrect_10000_32x32')
# We do not need or want to benchmark the decodes of incomplete images.
# In fact, in nanobench we assert that the full image decode succeeds.