[pypy-svn] r50004 - pypy/dist/pypy/jit/hintannotator/test
antocuni at codespeak.net
antocuni at codespeak.net
Sat Dec 22 11:54:14 CET 2007
Author: antocuni
Date: Sat Dec 22 11:54:14 2007
New Revision: 50004
Modified:
pypy/dist/pypy/jit/hintannotator/test/test_toy.py
Log:
hoorray, all relevant tests pass out of the box. We can consider the
hintannotator to be fully ported to ootype now :-)
Modified: pypy/dist/pypy/jit/hintannotator/test/test_toy.py
==============================================================================
--- pypy/dist/pypy/jit/hintannotator/test/test_toy.py (original)
+++ pypy/dist/pypy/jit/hintannotator/test/test_toy.py Sat Dec 22 11:54:14 2007
@@ -1,3 +1,4 @@
+import py
from pypy.jit.hintannotator.test.test_annotator import AbstractAnnotatorTest
from pypy.jit.hintannotator.test.test_annotator import P_OOPSPEC, P_OOPSPEC_NOVIRTUAL
@@ -22,6 +23,8 @@
class TestLLType(BaseToyTest):
type_system = 'lltype'
-## XXX: all tests fail :-(
-##class TestOOType(BaseToyTest):
-## type_system = 'ootype'
+class TestOOType(BaseToyTest):
+ type_system = 'ootype'
+
+ def test_hannotate_tl(self):
+ py.test.skip('fixme? (This policy is not relevant for now)')
More information about the pypy-svn
mailing list