Index: tools/dm_flags.py |
diff --git a/tools/dm_flags.py b/tools/dm_flags.py |
index 7a627175919123540fa1ba1310c1e58a6f5958b9..ec36268bca991a3192c8d24f8441405977a123b2 100755 |
--- a/tools/dm_flags.py |
+++ b/tools/dm_flags.py |
@@ -165,6 +165,11 @@ def get_args(bot): |
for raw_ext in r: |
blacklist.extend(('_ image _ .%s' % raw_ext).split(' ')) |
+ # Blacklist RAW images on Win32 tests due to out-of-memory issue |
+ if 'Win' in bot and not '64' in bot: |
+ for raw_ext in r: |
+ blacklist.extend(('_ image _ .%s' % raw_ext).split(' ')) |
+ |
match = [] |
if 'Valgrind' in bot: # skia:3021 |
match.append('~Threaded') |