[pypy-commit] pypy default: skip crashing test on windows

mattip noreply at buildbot.pypy.org
Sun Apr 20 08:44:06 CEST 2014


Author: Matti Picus <matti.picus at gmail.com>
Branch: 
Changeset: r70796:ba4e5b432b24
Date: 2014-04-20 09:43 +0300
http://bitbucket.org/pypy/pypy/changeset/ba4e5b432b24/

Log:	skip crashing test on windows

diff --git a/rpython/rtyper/lltypesystem/test/test_ll2ctypes.py b/rpython/rtyper/lltypesystem/test/test_ll2ctypes.py
--- a/rpython/rtyper/lltypesystem/test/test_ll2ctypes.py
+++ b/rpython/rtyper/lltypesystem/test/test_ll2ctypes.py
@@ -745,6 +745,7 @@
     def test_get_errno(self):
         eci = ExternalCompilationInfo(includes=['string.h'])
         if sys.platform.startswith('win'):
+            py.test.skip('writing to invalid fd on windows crashes the process')
             # Note that cpython before 2.7 installs an _invalid_parameter_handler,
             # which is why the test passes there, but this is no longer
             # accepted practice.


More information about the pypy-commit mailing list