[pypy-svn] r15120 - pypy/dist/pypy/translator/c/test

arigo at codespeak.net arigo at codespeak.net
Tue Jul 26 15:18:10 CEST 2005


Author: arigo
Date: Tue Jul 26 15:18:08 2005
New Revision: 15120

Modified:
   pypy/dist/pypy/translator/c/test/test_extfunc.py
Log:
Looking at the assembler produced by tcc, it seems to be a problem with tcc or
the linker.  Disable the test for now...


Modified: pypy/dist/pypy/translator/c/test/test_extfunc.py
==============================================================================
--- pypy/dist/pypy/translator/c/test/test_extfunc.py	(original)
+++ pypy/dist/pypy/translator/c/test/test_extfunc.py	Tue Jul 26 15:18:08 2005
@@ -66,6 +66,8 @@
     assert result[2] == os.stat(filename)[2]
 
 def test_os_fstat():
+    if os.environ.get('PYPY_CC', '').startswith('tcc'):
+        py.test.skip("segfault with tcc :-(")
     filename = str(py.magic.autopath())
     def call_fstat():
         fd = os.open(filename, os.O_RDONLY, 0777)



More information about the Pypy-commit mailing list