diff options
Diffstat (limited to 'cpp/config/TestUtil.py')
-rw-r--r-- | cpp/config/TestUtil.py | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/cpp/config/TestUtil.py b/cpp/config/TestUtil.py index 1d687e49e60..d0b7d3ea08d 100644 --- a/cpp/config/TestUtil.py +++ b/cpp/config/TestUtil.py @@ -119,16 +119,10 @@ def killServers(): if isCygwin(): print "killServers(): not implemented for cygwin python." - - # - # TODO: Michi: Not sure why exit(1) was here. This means that, when - # we run the test suite with allTests.py under Cygwin, the first sub-test that - # calls killServers will return non-zero exit status and, therefore, - # terminate allTests.py, so the subsequence tests are never run. - # - #sys.exit(1) + return for pid in serverPids: + if isWin32(): try: import win32api |