aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/run_tests.py
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2017-05-18 11:00:27 +0200
committerGravatar Jan Tattermusch <jtattermusch@google.com>2017-05-18 11:00:27 +0200
commit9883e0b4d2556ba224664411d248e06cd29c30cf (patch)
tree0b40154ddad9361cbc36e92bf06edee41ac5107f /tools/run_tests/run_tests.py
parentb2574bfb68c6fa8817e268fb90f94dae79297aba (diff)
fix run_tests.py on Windows and for non-C langs
Diffstat (limited to 'tools/run_tests/run_tests.py')
-rwxr-xr-xtools/run_tests/run_tests.py3
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)