[pypy-svn] r68194 - pypy/trunk/pypy/translator/c/test

pedronis at codespeak.net pedronis at codespeak.net
Tue Oct 6 10:52:20 CEST 2009


Author: pedronis
Date: Tue Oct  6 10:52:20 2009
New Revision: 68194

Modified:
   pypy/trunk/pypy/translator/c/test/test_dlltool.py
Log:
make them xfail with a comment. The fact that they broke is a bit of a sign of too much abuse and fragility



Modified: pypy/trunk/pypy/translator/c/test/test_dlltool.py
==============================================================================
--- pypy/trunk/pypy/translator/c/test/test_dlltool.py	(original)
+++ pypy/trunk/pypy/translator/c/test/test_dlltool.py	Tue Oct  6 10:52:20 2009
@@ -4,7 +4,9 @@
 import py
 
 class TestDLLTool(object):
+    @py.test.mark.xfail
     def test_basic(self):
+        # XXX abusing get_entry_point to get a so name makes no sense
         def f(x):
             return x
 
@@ -17,6 +19,7 @@
         assert dll.f(3) == 3
         assert dll.b(10) == 12
 
+    @py.test.mark.xfail
     def test_split_criteria(self):
         def f(x):
             return x



More information about the Pypy-commit mailing list