[pypy-commit] pypy default: fix test_rx86_*_encoding

arigo noreply at buildbot.pypy.org
Wed Feb 25 09:22:27 CET 2015


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r76115:a09b79ad2d51
Date: 2015-02-25 09:21 +0100
http://bitbucket.org/pypy/pypy/changeset/a09b79ad2d51/

Log:	fix test_rx86_*_encoding

diff --git a/rpython/jit/backend/x86/test/test_rx86_32_auto_encoding.py b/rpython/jit/backend/x86/test/test_rx86_32_auto_encoding.py
--- a/rpython/jit/backend/x86/test/test_rx86_32_auto_encoding.py
+++ b/rpython/jit/backend/x86/test/test_rx86_32_auto_encoding.py
@@ -317,7 +317,9 @@
                 # CALL_j is actually relative, so tricky to test
                 (instrname == 'CALL' and argmodes == 'j') or
                 # SET_ir must be tested manually
-                (instrname == 'SET' and argmodes == 'ir')
+                (instrname == 'SET' and argmodes == 'ir') or
+                # MULTIBYTE_NOPs can't easily be tested the same way
+                (instrname == 'MULTIBYTE')
         )
 
 


More information about the pypy-commit mailing list