fix run_tests.py on Windows and for non-C langs

pull/11185/head
Jan Tattermusch 8 years ago
parent b2574bfb68
commit 9883e0b4d2
  1. 3
      tools/run_tests/run_tests.py

@ -1440,6 +1440,9 @@ def _has_epollexclusive():
return True
except subprocess.CalledProcessError, e:
return False
except OSError, e:
# For languages other than C and Windows the binary won't exist
return False
# returns a list of things that failed (or an empty list on success)

Loading…
Cancel
Save