[pypy-commit] pypy py3k: not applicable to windows

pjenvey noreply at buildbot.pypy.org
Thu May 2 21:25:17 CEST 2013


Author: Philip Jenvey <pjenvey at underboss.org>
Branch: py3k
Changeset: r63805:f42b3a09594f
Date: 2013-05-02 12:22 -0700
http://bitbucket.org/pypy/pypy/changeset/f42b3a09594f/

Log:	not applicable to windows

diff --git a/pypy/module/thread/test/test_lock.py b/pypy/module/thread/test/test_lock.py
--- a/pypy/module/thread/test/test_lock.py
+++ b/pypy/module/thread/test/test_lock.py
@@ -1,4 +1,5 @@
 from __future__ import with_statement
+import py
 import sys
 from pypy.module.thread.test.support import GenericTestThread
 from rpython.translator.c.test.test_genc import compile
@@ -149,6 +150,7 @@
 
 
 class AppTestLockSignals(GenericTestThread):
+    pytestmark = py.test.mark.skipif("sys.platform != 'posix'")
 
     def setup_class(cls):
         cls.w_using_pthread_cond = cls.space.wrap(sys.platform == 'freebsd6')


More information about the pypy-commit mailing list