[pypy-svn] r51287 - pypy/dist/pypy/rpython/lltypesystem/test

arigo at codespeak.net arigo at codespeak.net
Tue Feb 5 13:29:50 CET 2008


Author: arigo
Date: Tue Feb  5 13:29:49 2008
New Revision: 51287

Modified:
   pypy/dist/pypy/rpython/lltypesystem/test/test_lloperation.py
Log:
Fix test.


Modified: pypy/dist/pypy/rpython/lltypesystem/test/test_lloperation.py
==============================================================================
--- pypy/dist/pypy/rpython/lltypesystem/test/test_lloperation.py	(original)
+++ pypy/dist/pypy/rpython/lltypesystem/test/test_lloperation.py	Tue Feb  5 13:29:49 2008
@@ -50,6 +50,6 @@
     for opname, llop in LL_OPERATIONS.items():
         if llop.canfold:
             continue
-        if opname.startswith('gc_x_'):
+        if opname.startswith('gc_x_') or opname.startswith('llvm_'):
             continue   # ignore experimental stuff
         assert opname in LL_INTERP_OPERATIONS



More information about the Pypy-commit mailing list