mirror of
https://github.com/servo/servo.git
synced 2025-07-01 20:43:39 +01:00
Minimal changes to get WPT tests running on Windows.
This commit is contained in:
parent
2fb74cb9e9
commit
c1c60beda1
1 changed files with 3 additions and 1 deletions
|
@ -280,8 +280,10 @@ def exe_path(name):
|
||||||
return
|
return
|
||||||
|
|
||||||
path = find_executable(name)
|
path = find_executable(name)
|
||||||
if os.access(path, os.X_OK):
|
if path and os.access(path, os.X_OK):
|
||||||
return path
|
return path
|
||||||
|
else:
|
||||||
|
return None
|
||||||
|
|
||||||
|
|
||||||
def check_args(kwargs):
|
def check_args(kwargs):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue