Author: Philip Jenvey <[email protected]>
Branch: py3k
Changeset: r63810:79ba5da0ab7c
Date: 2013-05-02 15:52 -0700
http://bitbucket.org/pypy/pypy/changeset/79ba5da0ab7c/
Log: skip on win
diff --git a/pypy/module/thread/test/test_fork.py
b/pypy/module/thread/test/test_fork.py
--- a/pypy/module/thread/test/test_fork.py
+++ b/pypy/module/thread/test/test_fork.py
@@ -94,6 +94,9 @@
import os
import time
+ if not hasattr(os, 'fork'):
+ skip("No fork on this platform")
+
def fork_with_import_lock(level):
release = 0
in_child = False
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit