diff options
-rw-r--r-- | wintest/wintest.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/wintest/wintest.py b/wintest/wintest.py index 94d54de150..93da47a6a6 100644 --- a/wintest/wintest.py +++ b/wintest/wintest.py @@ -492,9 +492,12 @@ options { while retries > 0: child = self.pexpect_spawn("nc -v -z -w 1 %s %u" % (hostname, port), crlf=False, timeout=1) - i = child.expect(['succeeded', 'failed', pexpect.EOF, pexpect.TIMEOUT]) + child.expect([pexpect.EOF, pexpect.TIMEOUT]) + child.close() + i = child.exitstatus if wait_for_fail: - if i > 0: + #wait for timeout or fail + if i == None or i > 0: return else: if i == 0: |