Force exit using os._exit instead of sys.exit,
this makes sure that the child does not continue
testing.
diff --git a/Lib/test/test_uuid.py b/Lib/test/test_uuid.py
index d101956..e503084 100644
--- a/Lib/test/test_uuid.py
+++ b/Lib/test/test_uuid.py
@@ -461,7 +461,7 @@
             os.close(fds[0])
             value = uuid.uuid4()
             os.write(fds[1], value.hex)
-            sys.exit(0)
+            os._exit(0)
 
         else:
             os.close(fds[1])