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

Unified Diff: tools/dm_flags.py

Issue 2074403003: Exempt GrShape test from running on Android (Closed) Base URL: https://chromium.googlesource.com/skia.git@master
Patch Set: Created 4 years, 6 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 57c0620c4588fec9b50851b5443e82867152cd9f..9672849ee344fc28ca0dbce6a1404595890e3fd0 100755
--- a/tools/dm_flags.py
+++ b/tools/dm_flags.py
@@ -162,6 +162,12 @@ def get_args(bot):
# This GM triggers a SkSmallAllocator assert.
blacklist.extend('_ gm _ composeshader_bitmap'.split(' '))
+ if 'Android' in bot or 'iOS' in bot:
+ # This test crashes the N9 (perhaps because of large malloc/frees). It also
+ # is fairly slow and not platform-specific. So we just disable it on all of
+ # Android and iOS. skia:5438
+ blacklist.extend('_ test _ GrShape'.split(' '))
+
# skia:4095
for test in ['bleed_image',
'c_gms',
« 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