From 9883e0b4d2556ba224664411d248e06cd29c30cf Mon Sep 17 00:00:00 2001 From: Jan Tattermusch Date: Thu, 18 May 2017 11:00:27 +0200 Subject: fix run_tests.py on Windows and for non-C langs --- tools/run_tests/run_tests.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'tools/run_tests/run_tests.py') 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) -- cgit v1.2.3