Author: Brian Kearns <[email protected]>
Branch: 
Changeset: r73176:9f0f00ddfc76
Date: 2014-08-29 09:21 -0700
http://bitbucket.org/pypy/pypy/changeset/9f0f00ddfc76/

Log:    reenable these tests, work on buildbot?

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,16 +232,12 @@
 
     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

Reply via email to