Skip absurdly slow PDF tests on Valgrind bot.
authormtklein <mtklein@chromium.org>
Sat, 14 Mar 2015 14:24:29 +0000 (07:24 -0700)
committerCommit bot <commit-bot@chromium.org>
Sat, 14 Mar 2015 14:24:29 +0000 (07:24 -0700)
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

tools/dm_flags.json
tools/dm_flags.py

index 32a5c2cf320bb045fe48b22c0f52382c3af17c8f..7c14ec259088ac9aad15ef4158720bfa5090b4aa 100644 (file)
     "pdf", 
     "_", 
     ".webp", 
+    "pdf", 
+    "gm", 
+    "fontmgr_iter", 
+    "pdf", 
+    "_", 
+    "PANO_20121023_214540.jpg", 
     "--match", 
     "~Threaded"
   ], 
     "pdf", 
     "_", 
     ".webp", 
+    "pdf", 
+    "gm", 
+    "fontmgr_iter", 
+    "pdf", 
+    "_", 
+    "PANO_20121023_214540.jpg", 
     "--match", 
     "~Threaded"
   ], 
index d00f74cab98a5d913464860a8ab58159af479b14..9e19e34c0ecd429bd92ed0e63867ef84c0813acb 100755 (executable)
@@ -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: