[pypy-svn] r39831 - pypy/dist/pypy/translator/llvm/test

rxe at codespeak.net rxe at codespeak.net
Sat Mar 3 18:06:58 CET 2007


Author: rxe
Date: Sat Mar  3 18:06:55 2007
New Revision: 39831

Modified:
   pypy/dist/pypy/translator/llvm/test/test_lltype.py
Log:
upgrade a test a tiny bit

Modified: pypy/dist/pypy/translator/llvm/test/test_lltype.py
==============================================================================
--- pypy/dist/pypy/translator/llvm/test/test_lltype.py	(original)
+++ pypy/dist/pypy/translator/llvm/test/test_lltype.py	Sat Mar  3 18:06:55 2007
@@ -386,6 +386,7 @@
         assert res == 0 + 10 + 30 + 1000
 
 def test_direct_fieldptr():
+    gcc3_test()
     S = GcStruct('S', ('x', Signed), ('y', Signed))
     def llf(n):
         s = malloc(S)
@@ -393,7 +394,6 @@
         a[0] = n
         return s.y
 
-    py.test.skip("wip")
     fn = compile_function(llf, [int])
     res = fn(34)
     assert res == 34



More information about the Pypy-commit mailing list