[pypy-commit] pypy default: skip windows as well as posix

mattip noreply at buildbot.pypy.org
Mon Jun 16 22:38:11 CEST 2014


Author: mattip <matti.picus at gmail.com>
Branch: 
Changeset: r72081:0681a125b579
Date: 2014-06-16 23:20 +0300
http://bitbucket.org/pypy/pypy/changeset/0681a125b579/

Log:	skip windows as well as posix

diff --git a/rpython/rlib/test/test_streamio.py b/rpython/rlib/test/test_streamio.py
--- a/rpython/rlib/test/test_streamio.py
+++ b/rpython/rlib/test/test_streamio.py
@@ -698,8 +698,8 @@
         return streamio.MMapFile(self.fd, mmapmode)
 
     def test_write(self):
-        if os.name == "posix":
-            return # write() does't work on Unix :-(
+        if os.name == "posix" or os.name == 'nt':
+            return # write() does't work on Unix nor on win32:-(
         file = self.makeStream(mode="w")
         file.write("BooHoo\n")
         file.write("Barf\n")


More information about the pypy-commit mailing list