diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/arch/aarch64/arch.py | 1 | ||||
| -rw-r--r-- | test/arch/arm/arch.py | 2 | ||||
| -rw-r--r-- | test/arch/mips32/arch.py | 1 | ||||
| -rw-r--r-- | test/arch/msp430/arch.py | 1 | ||||
| -rw-r--r-- | test/arch/ppc32/arch.py | 1 | ||||
| -rw-r--r-- | test/arch/x86/arch.py | 1 |
6 files changed, 7 insertions, 0 deletions
diff --git a/test/arch/aarch64/arch.py b/test/arch/aarch64/arch.py index a693b0f0..57ec9b14 100644 --- a/test/arch/aarch64/arch.py +++ b/test/arch/aarch64/arch.py @@ -1870,4 +1870,5 @@ for s, l in reg_tests_aarch64[:]: print([x for x in a]) print(repr(b)) assert(b in a) + print(l.to_html()) diff --git a/test/arch/arm/arch.py b/test/arch/arm/arch.py index 740655da..42e80772 100644 --- a/test/arch/arm/arch.py +++ b/test/arch/arm/arch.py @@ -261,6 +261,7 @@ for s, l in reg_tests_arm: print([x for x in a]) print(repr(b)) assert(b in a) + print(l.to_html()) reg_tests_armt = [ ("0006ff5c LSLS R2, R0, 0x1A", @@ -733,6 +734,7 @@ for s, l in reg_tests_armt: print([x for x in a]) print(repr(b)) assert(b in a) + print(l.to_html()) print('TEST time', time.time() - ts) diff --git a/test/arch/mips32/arch.py b/test/arch/mips32/arch.py index de6d4547..0509f033 100644 --- a/test/arch/mips32/arch.py +++ b/test/arch/mips32/arch.py @@ -274,3 +274,4 @@ for s, l in reg_tests_mips32: print([x for x in a]) print(repr(b)) assert(b in a) + print(l.to_html()) diff --git a/test/arch/msp430/arch.py b/test/arch/msp430/arch.py index bc38c363..133b8b55 100644 --- a/test/arch/msp430/arch.py +++ b/test/arch/msp430/arch.py @@ -104,3 +104,4 @@ for s, l in reg_tests_msp: print([x for x in a]) print(repr(b)) assert(b in a) + print(l.to_html()) diff --git a/test/arch/ppc32/arch.py b/test/arch/ppc32/arch.py index 13c69c73..f5503330 100644 --- a/test/arch/ppc32/arch.py +++ b/test/arch/ppc32/arch.py @@ -114,6 +114,7 @@ for mode, s, l, in reg_tests: a = mn_ppc.asm(l) print('asm result %s' % [x for x in a]) print(repr(b)) + print(l.to_html()) print('test re dis') for x in a: diff --git a/test/arch/x86/arch.py b/test/arch/x86/arch.py index 55694dfe..22cfcf39 100644 --- a/test/arch/x86/arch.py +++ b/test/arch/x86/arch.py @@ -3153,6 +3153,7 @@ for mode, s, l, in reg_tests: a = mn_x86.asm(l) print('asm result', [x for x in a]) print(repr(b)) + print(l.to_html()) for x in a: print("BYTES", repr(x)) |