Bug 1569688 - Use e10s by default for geckoview mochitest; r=jmaher

The default, options.app == None, implies geckoview, with e10s.

Differential Revision: https://phabricator.services.mozilla.com/D39722

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Geoff Brown 2019-07-29 17:54:25 +00:00
Родитель 61f289efbe
Коммит 2c32a72538
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -177,7 +177,7 @@ class MochitestRunner(MozbuildObject):
options.manifestFile = manifest
# Firefox for Android doesn't use e10s
if options.app is None or 'geckoview' not in options.app:
if options.app is not None and 'geckoview' not in options.app:
options.e10s = False
print("using e10s=False for non-geckoview app")