about summary refs log tree commit diff stats
path: root/test/arch
diff options
context:
space:
mode:
Diffstat (limited to 'test/arch')
-rw-r--r--test/arch/aarch64/arch.py6
-rw-r--r--test/arch/arm/arch.py2
-rw-r--r--test/arch/mips32/arch.py1
-rw-r--r--test/arch/msp430/arch.py1
-rw-r--r--test/arch/ppc32/arch.py1
-rw-r--r--test/arch/x86/arch.py1
6 files changed, 12 insertions, 0 deletions
diff --git a/test/arch/aarch64/arch.py b/test/arch/aarch64/arch.py
index 9be0c6c5..57ec9b14 100644
--- a/test/arch/aarch64/arch.py
+++ b/test/arch/aarch64/arch.py
@@ -1829,8 +1829,13 @@ reg_tests_aarch64 = [
     ("XXXXXXXX    STLXRB     W17, W16, [X14]",
      "D0FD1108"),
 
+    ("XXXXXXXX    STLR       W9, [X8]",
+     "09FD9F88"),
     ("XXXXXXXX    STLRB      W1, [X0]",
      "01FC9F08"),
+    ("XXXXXXXX    STLRH      W9, [X8]",
+     "09FD9F48"),
+
     ("XXXXXXXX    IC         0x0, c1, 0x0, XZR",
      "1F7108D5"),
     ("XXXXXXXX    CLREX      0xF",
@@ -1865,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))