Minimal changes to get WPT tests running on Windows.

This commit is contained in:
Josh Matthews 2017-07-06 15:32:31 -04:00 committed by Ms2ger
parent 2fb74cb9e9
commit c1c60beda1

View file

@ -280,8 +280,10 @@ def exe_path(name):
return
path = find_executable(name)
if os.access(path, os.X_OK):
if path and os.access(path, os.X_OK):
return path
else:
return None
def check_args(kwargs):