Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(45)

Unified Diff: tools/dm_flags.py

Issue 1003423002: Skip absurdly slow PDF tests on Valgrind bot. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/dm_flags.json ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/dm_flags.py
diff --git a/tools/dm_flags.py b/tools/dm_flags.py
index d00f74cab98a5d913464860a8ab58159af479b14..9e19e34c0ecd429bd92ed0e63867ef84c0813acb 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:
« no previous file with comments | « tools/dm_flags.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698