Blacklist certain win7 gms that are never finishing on dm
authoregdaniel <egdaniel@google.com>
Thu, 19 Mar 2015 20:09:17 +0000 (13:09 -0700)
committerCommit bot <commit-bot@chromium.org>
Thu, 19 Mar 2015 20:09:17 +0000 (13:09 -0700)
BUG=skia:

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

tools/dm_flags.json
tools/dm_flags.py

index 381e7cee50659a6ce63c0fbf6d48b98b4585479f..a571b74d662c7fd5068fa02f012e067440a746d4 100644 (file)
     "_", 
     "_", 
     "subset", 
-    "_"
+    "_", 
+    "msaa16", 
+    "gm", 
+    "colorwheelnative", 
+    "pdf", 
+    "gm", 
+    "fontmgr_iter_factory"
   ]
 }
\ No newline at end of file
index ab3a9cc6f7800c735b20ed2344f78b98ef468473..f05bb22416e0aa67d407b59b753f89309bc07391 100755 (executable)
@@ -56,6 +56,12 @@ def get_args(bot):
     blacklist.extend('_ image _'.split(' '))
     blacklist.extend('_ subset _'.split(' '))
 
+  # Certain gm's on win7 gpu and pdf are never finishing and keeping the test
+  # running forever
+  if 'Win7' in bot:
+    blacklist.extend('msaa16 gm colorwheelnative'.split(' '))
+    blacklist.extend('pdf gm fontmgr_iter_factory'.split(' '))
+
   # Drawing SKPs or images into GPU canvases is a New Thing.
   # It seems like we're running out of RAM on some Android bots, so start off
   # with a very wide blacklist disabling all these tests on all Android bots.