Author: mattip <matti.pi...@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") _______________________________________________ pypy-commit mailing list pypy-commit@python.org https://mail.python.org/mailman/listinfo/pypy-commit