aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorGravatar borenet <borenet@google.com>2015-07-21 05:57:22 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-07-21 05:57:22 -0700
commit9b8d3580c2a57ef6f788b1dc04b75106baf2e98a (patch)
tree777cb67ec03e513658e55d38a7feb6d32af73fa4 /tools
parente942bee8f9bc9b224aecc376083082c1ac33818d (diff)
Skip imagefiltersclipped GM on Galaxy S4
Diffstat (limited to 'tools')
-rw-r--r--tools/dm_flags.json3
-rwxr-xr-xtools/dm_flags.py3
2 files changed, 5 insertions, 1 deletions
diff --git a/tools/dm_flags.json b/tools/dm_flags.json
index ce3c5b1f5d..dabaf11d55 100644
--- a/tools/dm_flags.json
+++ b/tools/dm_flags.json
@@ -423,7 +423,8 @@
"Hopstarter-Mac-Folders-Apple.ico",
"--match",
"~tabl_mozilla_0",
- "~desk_yahoonews_0"
+ "~desk_yahoonews_0",
+ "~imagefiltersclipped"
],
"Test-Android-GCC-Nexus7-GPU-Tegra3-Arm7-Release": [
"--config",
diff --git a/tools/dm_flags.py b/tools/dm_flags.py
index 81079701e1..93102cd957 100755
--- a/tools/dm_flags.py
+++ b/tools/dm_flags.py
@@ -169,6 +169,9 @@ def get_args(bot):
if 'iOS' in bot:
match.append('~WritePixels')
+ if 'GalaxyS4' in bot: # skia:4079
+ match.append('~imagefiltersclipped')
+
if match:
args.append('--match')
args.extend(match)