Skip to content
Snippets Groups Projects
Commit 9883e0b4 authored by Jan Tattermusch's avatar Jan Tattermusch
Browse files

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

parent b2574bfb
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment