diff options
author | borenet <borenet@google.com> | 2015-07-21 05:57:22 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-07-21 05:57:22 -0700 |
commit | 9b8d3580c2a57ef6f788b1dc04b75106baf2e98a (patch) | |
tree | 777cb67ec03e513658e55d38a7feb6d32af73fa4 | |
parent | e942bee8f9bc9b224aecc376083082c1ac33818d (diff) |
Skip imagefiltersclipped GM on Galaxy S4
BUG=skia:4079
Review URL: https://codereview.chromium.org/1250473005
-rw-r--r-- | tools/dm_flags.json | 3 | ||||
-rwxr-xr-x | tools/dm_flags.py | 3 |
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) |