[pypy-svn] r31960 - pypy/dist/pypy/rpython/test

arigo at codespeak.net arigo at codespeak.net
Sat Sep 2 21:47:41 CEST 2006


Author: arigo
Date: Sat Sep  2 21:47:39 2006
New Revision: 31960

Modified:
   pypy/dist/pypy/rpython/test/test_llinterp.py
Log:
This test passes if we spot the typo in it :-)


Modified: pypy/dist/pypy/rpython/test/test_llinterp.py
==============================================================================
--- pypy/dist/pypy/rpython/test/test_llinterp.py	(original)
+++ pypy/dist/pypy/rpython/test/test_llinterp.py	Sat Sep  2 21:47:39 2006
@@ -478,7 +478,6 @@
         raise TypeError
 
 def test_llinterp_fail():
-    py.test.skip("Fails")
     def aa(i):
         if i:
             raise TypeError()
@@ -493,6 +492,6 @@
     annotator = t.buildannotator()
     annotator.build_types(bb, [int])
     t.buildrtyper(type_system="ootype").specialize()
-    graph = graphof(t, aa)
+    graph = graphof(t, bb)
     interp = LLInterpreter(t.rtyper)
     res = interp.eval_graph(graph, [1])



More information about the Pypy-commit mailing list