mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 06:11:37 +00:00
Bug 1494509 - disable geckodriver on aarch64 windows; r=ato
This commit is contained in:
parent
3445a4da75
commit
24d4f33325
@ -919,6 +919,9 @@ set_config('ENABLE_MARIONETTE', marionette)
|
|||||||
def geckodriver_default(enable_tests, target, cross_compile, hazard, asan):
|
def geckodriver_default(enable_tests, target, cross_compile, hazard, asan):
|
||||||
if not enable_tests:
|
if not enable_tests:
|
||||||
return False
|
return False
|
||||||
|
# geckodriver depends on winapi 0.2.8, which doesn't work with AArch64.
|
||||||
|
if target.os == 'WINNT' and target.cpu == 'aarch64':
|
||||||
|
return False
|
||||||
if hazard or target.os == 'Android' or (asan and cross_compile):
|
if hazard or target.os == 'Android' or (asan and cross_compile):
|
||||||
return False
|
return False
|
||||||
return True
|
return True
|
||||||
|
Loading…
Reference in New Issue
Block a user