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

Unified Diff: tools/dm_flags.py

Issue 1822033002: Blacklist RAW images on x86 Ubuntu (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 9 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 | « no previous file | 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 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(' '))
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698