[pypy-svn] r31011 - pypy/dist/pypy/module/bz2/test

rhymes at codespeak.net rhymes at codespeak.net
Fri Aug 4 19:00:57 CEST 2006


Author: rhymes
Date: Fri Aug  4 19:00:54 2006
New Revision: 31011

Modified:
   pypy/dist/pypy/module/bz2/test/test_bz2.py
Log:
mask in MS Windows by now

Modified: pypy/dist/pypy/module/bz2/test/test_bz2.py
==============================================================================
--- pypy/dist/pypy/module/bz2/test/test_bz2.py	(original)
+++ pypy/dist/pypy/module/bz2/test/test_bz2.py	Fri Aug  4 19:00:54 2006
@@ -2,6 +2,9 @@
 from pypy.conftest import gettestobjspace
 import os
 
+if os.name == "nt":
+    skip("fcntl module is not available on Windows")
+
 def teardown_module(mod):
     if os.path.exists("foo"):
         os.unlink("foo")



More information about the Pypy-commit mailing list