diff options
author | mtklein <mtklein@chromium.org> | 2015-03-02 08:32:15 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-03-02 08:32:15 -0800 |
commit | b12f88152c87e006d04fade4f106669cd9e44677 (patch) | |
tree | 4fbed2713492999c6a78573ed4f81be758da6077 | |
parent | 9345eef3a052b6f7d41b1e2ab7dd075682188ffa (diff) |
DM: run pdf config on the bots.
BUG=skia:
Review URL: https://codereview.chromium.org/968953002
-rw-r--r-- | tools/dm_flags.json | 5 | ||||
-rwxr-xr-x | tools/dm_flags.py | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/tools/dm_flags.json b/tools/dm_flags.json index 819ebf74ff..8388081b50 100644 --- a/tools/dm_flags.json +++ b/tools/dm_flags.json @@ -3,6 +3,7 @@ "--config", "565", "8888", + "pdf", "gpu", "msaa4", "nvprmsaa4", @@ -44,6 +45,7 @@ "--config", "565", "8888", + "pdf", "gpu", "msaa4", "nvprmsaa4", @@ -81,6 +83,7 @@ "--config", "565", "8888", + "pdf", "gpu", "msaa16", "nvprmsaa16", @@ -102,6 +105,7 @@ "--config", "565", "8888", + "pdf", "gpu", "msaa16", "nvprmsaa16", @@ -123,6 +127,7 @@ "--config", "565", "8888", + "pdf", "gpu", "msaa16", "nvprmsaa16", diff --git a/tools/dm_flags.py b/tools/dm_flags.py index a7ed8ca7af..efdf6004f1 100755 --- a/tools/dm_flags.py +++ b/tools/dm_flags.py @@ -22,7 +22,7 @@ cov_start = lineno()+1 # We care about coverage starting just past this def. def get_args(bot): args = [] - configs = ['565', '8888', 'gpu'] + configs = ['565', '8888', 'pdf', 'gpu'] # The S4 crashes and the NP produces a long error stream when we run with # MSAA. if ('GalaxyS4' not in bot and |