aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar bsalomon <bsalomon@google.com>2016-06-20 12:48:33 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-06-20 12:48:33 -0700
commitddbc6e5d27254460f598a157e10f5db841160ee5 (patch)
tree45953696cc00fb860c9f2e5129f5bef92a7c98f1
parent1b28c1adc1e156831d5332546e942b63fd29075b (diff)
Exempt GrShape test from running on Android
-rw-r--r--tools/dm_flags.json32
-rwxr-xr-xtools/dm_flags.py6
2 files changed, 38 insertions, 0 deletions
diff --git a/tools/dm_flags.json b/tools/dm_flags.json
index 6427b69410..eec19d6bc7 100644
--- a/tools/dm_flags.json
+++ b/tools/dm_flags.json
@@ -74,6 +74,10 @@
"image",
"gen_platf",
"frame_larger_than_image.gif",
+ "_",
+ "test",
+ "_",
+ "GrShape",
"serialize-8888",
"gm",
"_",
@@ -214,6 +218,10 @@
"image",
"_",
"_",
+ "_",
+ "test",
+ "_",
+ "GrShape",
"serialize-8888",
"gm",
"_",
@@ -459,6 +467,10 @@
"image",
"_",
"_",
+ "_",
+ "test",
+ "_",
+ "GrShape",
"serialize-8888",
"gm",
"_",
@@ -702,6 +714,10 @@
"image",
"_",
"_",
+ "_",
+ "test",
+ "_",
+ "GrShape",
"serialize-8888",
"gm",
"_",
@@ -948,6 +964,10 @@
"image",
"_",
"_",
+ "_",
+ "test",
+ "_",
+ "GrShape",
"serialize-8888",
"gm",
"_",
@@ -1187,6 +1207,10 @@
"image",
"_",
"_",
+ "_",
+ "test",
+ "_",
+ "GrShape",
"serialize-8888",
"gm",
"_",
@@ -1428,6 +1452,10 @@
"image",
"_",
"_",
+ "_",
+ "test",
+ "_",
+ "GrShape",
"serialize-8888",
"gm",
"_",
@@ -1665,6 +1693,10 @@
"image",
"_",
"_",
+ "_",
+ "test",
+ "_",
+ "GrShape",
"serialize-8888",
"gm",
"_",
diff --git a/tools/dm_flags.py b/tools/dm_flags.py
index 57c0620c45..9672849ee3 100755
--- a/tools/dm_flags.py
+++ b/tools/dm_flags.py
@@ -162,6 +162,12 @@ def get_args(bot):
# 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',