зеркало из https://github.com/mozilla/gecko-dev.git
Bug 975442: recognize as emulator if device name begins with 'emulator'. r=jgriffin
This commit is contained in:
Родитель
815a72b7fb
Коммит
e58c108d84
|
@ -364,7 +364,7 @@ class MachCommands(MachCommandBase):
|
|||
# they should be modified to work with all devices.
|
||||
def is_emulator(cls):
|
||||
"""Emulator needs to be configured."""
|
||||
return cls.device_name in ('emulator', 'emulator-jb')
|
||||
return cls.device_name.find('emulator') == 0
|
||||
|
||||
|
||||
@CommandProvider
|
||||
|
|
|
@ -77,7 +77,7 @@ class B2GCommands(MachCommandBase):
|
|||
@CommandArgument('tests', nargs='*', metavar='TESTS',
|
||||
help='Path to test(s) to run.')
|
||||
def run_marionette_webapi(self, tests, emulator=None, testtype=None):
|
||||
if not emulator and self.device_name in ('emulator', 'emulator-jb'):
|
||||
if not emulator and self.device_name.find('emulator') == 0:
|
||||
emulator='arm'
|
||||
|
||||
if self.substs.get('ENABLE_MARIONETTE') != '1':
|
||||
|
|
|
@ -637,7 +637,7 @@ class MachCommands(MachCommandBase):
|
|||
# they should be modified to work with all devices.
|
||||
def is_emulator(cls):
|
||||
"""Emulator needs to be configured."""
|
||||
return cls.device_name in ('emulator', 'emulator-jb')
|
||||
return cls.device_name.find('emulator') == 0
|
||||
|
||||
|
||||
@CommandProvider
|
||||
|
|
Загрузка…
Ссылка в новой задаче