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

Unified Diff: tools/mb/mb.py

Issue 2764483002: Use xvfb for the ozone linux tests (Closed)
Patch Set: Created 3 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/mb/mb.py
diff --git a/tools/mb/mb.py b/tools/mb/mb.py
index 917f3c62be301aad351cf8234a38bbb2d46ee84a..cf17f20432597d49b5e44c42839fc0cb507681c6 100755
--- a/tools/mb/mb.py
+++ b/tools/mb/mb.py
@@ -1066,8 +1066,7 @@ class MetaBuildWrapper(object):
# expected to run using xvfb. For example, Linux Desktop, X11 CrOS and
# Ozone CrOS builds.
use_xvfb = (self.platform == 'linux2' and
- not android and
- ((not ozone) or (ozone and chromeos)))
+ not android and ozone or (ozone and chromeos))
fwang 2017/03/20 15:10:35 I think ((not ozone) or (ozone and chromeos)) can
kylechar 2017/03/20 17:03:31 Yep, like this: use_xvfb = (self.platform == 'lin
Dirk Pranke 2017/03/20 17:22:50 So there's no non-X11 configuration we're testing
kylechar 2017/03/20 17:30:42 This particular change only affects 'Ozone Linux'
Dirk Pranke 2017/03/20 17:36:57 I guess we were already assuming CrOS+Ozone==X11.
fwang 2017/03/21 06:54:29 What about this: "... For example, Linux Desktop,
msisov 2017/03/21 07:18:16 Done.
asan = 'is_asan=true' in vals['gn_args']
msan = 'is_msan=true' in vals['gn_args']
« 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