[pypy-commit] pypy use-file-star-for-file: fobj.seek is emulated on win32, doesn't catch invalid mode

bdkearns noreply at buildbot.pypy.org
Sat Sep 13 03:14:55 CEST 2014


Author: Brian Kearns <bdkearns at gmail.com>
Branch: use-file-star-for-file
Changeset: r73518:e0367fae2428
Date: 2014-09-12 16:49 -0700
http://bitbucket.org/pypy/pypy/changeset/e0367fae2428/

Log:	fobj.seek is emulated on win32, doesn't catch invalid mode

diff --git a/rpython/rlib/test/test_rfile.py b/rpython/rlib/test/test_rfile.py
--- a/rpython/rlib/test/test_rfile.py
+++ b/rpython/rlib/test/test_rfile.py
@@ -262,6 +262,7 @@
         f()
         self.interpret(f, [])
 
+    @py.test.mark.xfail("os.name == 'nt'")
     def test_seek(self):
         fname = str(self.tmpdir.join('file_4'))
 


More information about the pypy-commit mailing list