Commit 91165c0b authored by Ronald Oussoren's avatar Ronald Oussoren

Force exit using os._exit instead of sys.exit,

this makes sure that the child does not continue
testing.
parent 33206963
......@@ -461,7 +461,7 @@ class TestUUID(TestCase):
os.close(fds[0])
value = uuid.uuid4()
os.write(fds[1], value.hex)
sys.exit(0)
os._exit(0)
else:
os.close(fds[1])
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment