about summary refs log tree commit diff stats
path: root/test/test_all.py
diff options
context:
space:
mode:
authorserpilliere <serpilliere@users.noreply.github.com>2015-03-19 13:43:20 +0100
committerserpilliere <serpilliere@users.noreply.github.com>2015-03-19 13:43:20 +0100
commite472b3b6ab1a86c0522e70f1fc5c8cb6361372eb (patch)
treeff384a705779e93badf5bf531ba630e46789e214 /test/test_all.py
parentf05424a7acf75f7ab490e9df72c0006380def927 (diff)
parent595fda5b35238a9e468af5d3d674129d62e369dc (diff)
downloadmiasm-e472b3b6ab1a86c0522e70f1fc5c8cb6361372eb.tar.gz
miasm-e472b3b6ab1a86c0522e70f1fc5c8cb6361372eb.zip
Merge pull request #116 from commial/container-arch
Container arch
Diffstat (limited to 'test/test_all.py')
-rw-r--r--test/test_all.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/test_all.py b/test/test_all.py
index 8d759053..ecf9a63b 100644
--- a/test/test_all.py
+++ b/test/test_all.py
@@ -236,6 +236,8 @@ for script, prods in [(["single_instr.py"], []),
                       (["function.py"], ["graph.txt"]),
                       (["file.py", Example.get_sample("box_upx.exe"),
                         "0x410f90"], ["graph.txt"]),
+                      (["full.py", Example.get_sample("box_upx.exe")],
+                       ["graph_execflow.txt", "lines.txt"]),
                       ]:
     testset += ExampleDisassembler(script, products=prods)
 
@@ -249,7 +251,7 @@ class ExampleDisasmFull(ExampleDisassembler):
 
     def __init__(self, *args, **kwargs):
         super(ExampleDisasmFull, self).__init__(*args, **kwargs)
-        self.command_line = ["full.py", "-g", "-s"] + self.command_line
+        self.command_line = ["full.py", "-g", "-s", "-m"] + self.command_line
         self.products += ["graph_execflow.txt", "graph_irflow.txt", "lines.txt"]