[pypy-svn] r52093 - pypy/branch/jit-refactoring/pypy/jit/rainbow/test

arigo at codespeak.net arigo at codespeak.net
Mon Mar 3 15:56:12 CET 2008


Author: arigo
Date: Mon Mar  3 15:56:11 2008
New Revision: 52093

Modified:
   pypy/branch/jit-refactoring/pypy/jit/rainbow/test/test_serializegraph.py
Log:
Fix tests.


Modified: pypy/branch/jit-refactoring/pypy/jit/rainbow/test/test_serializegraph.py
==============================================================================
--- pypy/branch/jit-refactoring/pypy/jit/rainbow/test/test_serializegraph.py	(original)
+++ pypy/branch/jit-refactoring/pypy/jit/rainbow/test/test_serializegraph.py	Mon Mar  3 15:56:11 2008
@@ -261,7 +261,6 @@
         writer, jitcode = self.serialize(f, [int])
         assert jitcode.code == assemble(writer.interpreter,
                                         "red_direct_call", 0, 1, 0, 0,
-                                        "red_after_direct_call",
                                         "make_redbox", -1, 0,
                                         "red_int_mul", 1, 2,
                                         "make_new_redvars", 1, 3,
@@ -311,7 +310,6 @@
         writer, jitcode = self.serialize(ll_function, [int])
         assert jitcode.code == assemble(writer.interpreter,
                                         "yellow_direct_call", 0, 1, 0, 0,
-                                        "yellow_after_direct_call",
                                         "yellow_retrieve_result",
                                         "green_int_add", 0, -1,
                                         "make_redbox", 1, 0,


More information about the pypy-svn mailing list