[pypy-commit] pypy use-file-star-for-file: these tests fail on mac even against cpython

bdkearns noreply at buildbot.pypy.org
Fri Sep 12 20:48:59 CEST 2014


Author: Brian Kearns <bdkearns at gmail.com>
Branch: use-file-star-for-file
Changeset: r73512:802c516c3dc6
Date: 2014-09-12 11:41 -0700
http://bitbucket.org/pypy/pypy/changeset/802c516c3dc6/

Log:	these tests fail on mac even against cpython

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
@@ -123,6 +123,7 @@
         f()
         self.interpret(f, [])
 
+    @py.test.mark.xfail("sys.platform == 'darwin'")
     def test_open_buffering_full(self):
         fname = str(self.tmpdir.join('file_1b'))
 
@@ -140,6 +141,7 @@
         f()
         self.interpret(f, [])
 
+    @py.test.mark.xfail("sys.platform == 'darwin'")
     def test_fdopen_buffering_full(self):
         fname = str(self.tmpdir.join('file_1b'))
 


More information about the pypy-commit mailing list