about summary refs log tree commit diff stats
path: root/test/arch/arm/arch.py
diff options
context:
space:
mode:
authorserpilliere <serpilliere@users.noreply.github.com>2021-12-07 06:53:16 +0100
committerGitHub <noreply@github.com>2021-12-07 06:53:16 +0100
commit0c87b6cc420720dc38156197d064cbc2c1bf848f (patch)
tree3d1f3c95500b7d17a8389a5075aa2ca9d414d6fa /test/arch/arm/arch.py
parent0cd2cad02dd1b300d61bdc985b09de65f92261b4 (diff)
parent990df9a9fcb5ae6f1142f49865404e42ec01439c (diff)
downloadmiasm-0c87b6cc420720dc38156197d064cbc2c1bf848f.tar.gz
miasm-0c87b6cc420720dc38156197d064cbc2c1bf848f.zip
Merge pull request #1403 from serpilliere/fix_html
Fix html; Add reg test
Diffstat (limited to '')
-rw-r--r--test/arch/arm/arch.py2
1 files changed, 2 insertions, 0 deletions
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)