Exempt GrShape test from running on Android
BUG=skia:5438
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2074403003
Review-Url: https://codereview.chromium.org/2074403003
diff --git a/tools/dm_flags.py b/tools/dm_flags.py
index 57c0620..9672849 100755
--- a/tools/dm_flags.py
+++ b/tools/dm_flags.py
@@ -162,6 +162,12 @@
# This GM triggers a SkSmallAllocator assert.
blacklist.extend('_ gm _ composeshader_bitmap'.split(' '))
+ if 'Android' in bot or 'iOS' in bot:
+ # This test crashes the N9 (perhaps because of large malloc/frees). It also
+ # is fairly slow and not platform-specific. So we just disable it on all of
+ # Android and iOS. skia:5438
+ blacklist.extend('_ test _ GrShape'.split(' '))
+
# skia:4095
for test in ['bleed_image',
'c_gms',