Index: tools/dm_flags.py |
diff --git a/tools/dm_flags.py b/tools/dm_flags.py |
index 8addd08b0e0891e621bc5b686fa77ef2cdaf9aa0..d3caf11543c1d4a6d6e5982b36871ea9868ae061 100755 |
--- a/tools/dm_flags.py |
+++ b/tools/dm_flags.py |
@@ -193,8 +193,8 @@ 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: |
+ # Blacklist RAW images on some 32-bit machines due to out-of-memory issues |
+ if (('Win' in bot or 'Ubuntu' in bot) and not '64' in bot): |
msarett
2016/03/22 15:08:11
I chose not to check for "x86 and not 64" because
|
for raw_ext in r: |
blacklist.extend(('_ image _ .%s' % raw_ext).split(' ')) |