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

mwh at codespeak.net mwh at codespeak.net
Sun Mar 25 20:20:15 CEST 2007


Author: mwh
Date: Sun Mar 25 20:20:13 2007
New Revision: 41300

Modified:
   pypy/dist/pypy/translator/llvm/test/test_symbolic.py
Log:
updadte this skipped test a bit (still doesn't work)


Modified: pypy/dist/pypy/translator/llvm/test/test_symbolic.py
==============================================================================
--- pypy/dist/pypy/translator/llvm/test/test_symbolic.py	(original)
+++ pypy/dist/pypy/translator/llvm/test/test_symbolic.py	Sun Mar 25 20:20:13 2007
@@ -25,7 +25,7 @@
 def test_sizeof_array_with_no_length():
     py.test.skip("inprogress")
     A = lltype.GcArray(lltype.Signed, hints={'nolength': True})
-    a = lltype.malloc(A, 5)
+    a = lltype.malloc(A, 5, zero=True)
     
     arraysize = llmemory.itemoffsetof(A, 10)
     signedsize = llmemory.sizeof(lltype.Signed)



More information about the Pypy-commit mailing list