Author: Brian Kearns <[email protected]>
Branch:
Changeset: r73174:435d9a69a2f6
Date: 2014-08-29 08:55 -0700
http://bitbucket.org/pypy/pypy/changeset/435d9a69a2f6/
Log: skip these on windows, crash
diff --git a/pypy/module/_file/test/test_file.py
b/pypy/module/_file/test/test_file.py
--- a/pypy/module/_file/test/test_file.py
+++ b/pypy/module/_file/test/test_file.py
@@ -232,12 +232,16 @@
def test_exception_from_close(self):
import os
+ if os.name == 'nt':
+ skip("crashes on nt")
f = self.file(self.temppath, 'w')
os.close(f.fileno())
raises(IOError, f.close) # bad file descriptor
def test_exception_from_del(self):
import os, gc, sys, cStringIO
+ if os.name == 'nt':
+ skip("crashes on nt")
f = self.file(self.temppath, 'w')
g = cStringIO.StringIO()
preverr = sys.stderr
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit