[pypy-commit] pypy better-jit-hooks: fix a test

fijal noreply at buildbot.pypy.org
Thu Jan 5 22:00:35 CET 2012


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: better-jit-hooks
Changeset: r51046:d329360b0a1c
Date: 2012-01-05 23:00 +0200
http://bitbucket.org/pypy/pypy/changeset/d329360b0a1c/

Log:	fix a test

diff --git a/pypy/jit/backend/llsupport/test/test_runner.py b/pypy/jit/backend/llsupport/test/test_runner.py
--- a/pypy/jit/backend/llsupport/test/test_runner.py
+++ b/pypy/jit/backend/llsupport/test/test_runner.py
@@ -8,6 +8,12 @@
 
 class MyLLCPU(AbstractLLCPU):
     supports_floats = True
+
+    class assembler(object):
+        @staticmethod
+        def set_debug(flag):
+            pass
+    
     def compile_loop(self, inputargs, operations, looptoken):
         py.test.skip("llsupport test: cannot compile operations")
 


More information about the pypy-commit mailing list