Disable --config pdf temporarily on Valgrind bot.
authormtklein <mtklein@chromium.org>
Thu, 5 Mar 2015 21:06:30 +0000 (13:06 -0800)
committerCommit bot <commit-bot@chromium.org>
Thu, 5 Mar 2015 21:06:30 +0000 (13:06 -0800)
BUG=skia:3505

Review URL: https://codereview.chromium.org/987533002

tools/dm_flags.json
tools/dm_flags.py

index a49e47c..681b0c5 100644 (file)
     "gpu", 
     "msaa16", 
     "nvprmsaa16", 
-    "pdf", 
     "serialize-8888", 
     "tiles_rt-8888", 
     "pipe-8888", 
index 548bb35..583d4f2 100755 (executable)
@@ -32,7 +32,8 @@ def get_args(bot):
     else:
       configs.extend(['msaa16', 'nvprmsaa16'])
   # Runs out of memory on Android bots and Daisy.  Everyone else seems fine.
-  if 'Android' not in bot and 'Daisy' not in bot:
+  # Valgrind: PDF + .webp -> jumps depending on uninitialized memory.  skia:3505
+  if 'Android' not in bot and 'Daisy' not in bot and 'Valgrind' not in bot:
     configs.append('pdf')
 
   # Xoom and NP are running out of RAM when we run all these modes.  skia:3255