diff options
author | Jan Tattermusch <jtattermusch@google.com> | 2017-05-18 11:00:27 +0200 |
---|---|---|
committer | Jan Tattermusch <jtattermusch@google.com> | 2017-05-18 11:00:27 +0200 |
commit | 9883e0b4d2556ba224664411d248e06cd29c30cf (patch) | |
tree | 0b40154ddad9361cbc36e92bf06edee41ac5107f | |
parent | b2574bfb68c6fa8817e268fb90f94dae79297aba (diff) |
fix run_tests.py on Windows and for non-C langs
-rwxr-xr-x | tools/run_tests/run_tests.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py index 830c356d91..568774cece 100755 --- a/tools/run_tests/run_tests.py +++ b/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) |