aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorGravatar msarett <msarett@google.com>2016-03-22 09:01:20 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-03-22 09:01:20 -0700
commit6c962f550fa946317302f3afc942efecda299d78 (patch)
treee56def241d6b7dfca1b450d4ba5ab1016b774a66 /tools
parentd6889293dd0942f27f9593f679722c956831f2c4 (diff)
Blacklist RAW images on x86 Ubuntu
Diffstat (limited to 'tools')
-rwxr-xr-xtools/dm_flags.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/dm_flags.py b/tools/dm_flags.py
index 8addd08b0e..d3caf11543 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):
for raw_ext in r:
blacklist.extend(('_ image _ .%s' % raw_ext).split(' '))