aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar mtklein <mtklein@chromium.org>2015-03-14 07:24:29 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-03-14 07:24:29 -0700
commitde7665a6d5b0f11d87abcbbf495d504f5aa419ce (patch)
tree33fe1407d0202fa443c75eba290957bbc9b77983
parent57a48a73a4252c21a5377826d79044017f3cbf06 (diff)
Skip absurdly slow PDF tests on Valgrind bot.
Our Valgrind-with-keepalive CPU bot is still running its first run as I write this. It's been going ~48 hours. 'pdf gm fontmgr_iter' finished after ~19 hours. 'pdf image PANO_20121023_214540.jpg' still seems to be running. After this, the next slowest will be '565 gm fontmgr_iter' at about 37 minutes. TBR=borenet@google.com BUG=skia: Review URL: https://codereview.chromium.org/1003423002
-rw-r--r--tools/dm_flags.json12
-rwxr-xr-xtools/dm_flags.py5
2 files changed, 16 insertions, 1 deletions
diff --git a/tools/dm_flags.json b/tools/dm_flags.json
index 32a5c2cf32..7c14ec2590 100644
--- a/tools/dm_flags.json
+++ b/tools/dm_flags.json
@@ -199,6 +199,12 @@
"pdf",
"_",
".webp",
+ "pdf",
+ "gm",
+ "fontmgr_iter",
+ "pdf",
+ "_",
+ "PANO_20121023_214540.jpg",
"--match",
"~Threaded"
],
@@ -225,6 +231,12 @@
"pdf",
"_",
".webp",
+ "pdf",
+ "gm",
+ "fontmgr_iter",
+ "pdf",
+ "_",
+ "PANO_20121023_214540.jpg",
"--match",
"~Threaded"
],
diff --git a/tools/dm_flags.py b/tools/dm_flags.py
index d00f74cab9..9e19e34c0e 100755
--- a/tools/dm_flags.py
+++ b/tools/dm_flags.py
@@ -58,9 +58,12 @@ def get_args(bot):
blacklist.extend('gpu skp _ gpu image _ gpu subset _'.split(' '))
blacklist.extend('msaa skp _ msaa image _ gpu subset _'.split(' '))
- # PDF + .webp -> jumps depending on uninitialized memory. skia:3505
if 'Valgrind' in bot:
+ # PDF + .webp -> jumps depending on uninitialized memory. skia:3505
blacklist.extend('pdf _ .webp'.split(' '))
+ # These both take 18+ hours to run.
+ blacklist.extend('pdf gm fontmgr_iter'.split(' '))
+ blacklist.extend('pdf _ PANO_20121023_214540.jpg'.split(' '))
if 'Valgrind_GPU' in bot:
args.append('--nocpu')
elif 'Valgrind_CPU' in bot: