[pypy-svn] r32252 - pypy/branch/kill-keepalives/pypy/translator/c/test

mwh at codespeak.net mwh at codespeak.net
Wed Sep 13 12:25:00 CEST 2006


Author: mwh
Date: Wed Sep 13 12:24:58 2006
New Revision: 32252

Modified:
   pypy/branch/kill-keepalives/pypy/translator/c/test/test_lltyped.py
Log:
skip two tests for now


Modified: pypy/branch/kill-keepalives/pypy/translator/c/test/test_lltyped.py
==============================================================================
--- pypy/branch/kill-keepalives/pypy/translator/c/test/test_lltyped.py	(original)
+++ pypy/branch/kill-keepalives/pypy/translator/c/test/test_lltyped.py	Wed Sep 13 12:24:58 2006
@@ -1,6 +1,6 @@
 from pypy.rpython.lltypesystem.lltype import *
 from pypy.translator.c.test import test_typed
-
+import py
 
 class TestLowLevelType(test_typed.CompilationTestCase):
 
@@ -52,6 +52,7 @@
         assert fn() == 607
 
     def test_recursivearray(self):
+        py.test.skip("not allowed any more")
         A = ForwardReference()
         A.become(FixedSizeArray(Struct("S", ('a', Ptr(A))), 5))
         TREE = GcStruct("TREE", ("root", A), ("other", A))
@@ -95,6 +96,7 @@
         assert res == 123
 
     def test_more_prebuilt_arrays(self):
+        py.test.skip("not allowed any more")
         A = FixedSizeArray(Struct('s1', ('x', Signed)), 5)
         S = GcStruct('s', ('a1', Ptr(A)), ('a2', A))
         s = malloc(S, zero=True)



More information about the Pypy-commit mailing list