about summary refs log tree commit diff stats
path: root/test/test_all.py
diff options
context:
space:
mode:
authorCamille Mougey <commial@gmail.com>2018-07-09 12:59:26 +0200
committerGitHub <noreply@github.com>2018-07-09 12:59:26 +0200
commit17d48de1951c81fc8b5b4184713a971537747227 (patch)
treed6f36c57d1e6d60a24b29234054178b30f2a6f0e /test/test_all.py
parent89cb925f74a29f1ab6dc2dc2b2d68c4f6a9d4158 (diff)
parent953676d831c314282a9e113f5617ca7a90b09be6 (diff)
downloadmiasm-17d48de1951c81fc8b5b4184713a971537747227.tar.gz
miasm-17d48de1951c81fc8b5b4184713a971537747227.zip
Merge pull request #713 from serpilliere/ssa_transform
Ssa transform
Diffstat (limited to 'test/test_all.py')
-rwxr-xr-xtest/test_all.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_all.py b/test/test_all.py
index 40df315c..9b17aa92 100755
--- a/test/test_all.py
+++ b/test/test_all.py
@@ -515,8 +515,8 @@ class ExampleDisasmFull(ExampleDisassembler):
 
     def __init__(self, *args, **kwargs):
         super(ExampleDisasmFull, self).__init__(*args, **kwargs)
-        self.command_line = ["full.py", "-g", "-ss", "-d", "-m"] + self.command_line
-        self.products += ["graph_defuse.dot", "graph_execflow.dot",
+        self.command_line = ["full.py", "-g", "-ss", "-d", "-p", "-m"] + self.command_line
+        self.products += ["graph_defuse.dot", "graph_execflow.dot", "ssa.dot",
                           "graph_irflow.dot", "graph_irflow_raw.dot", "lines.dot", "graph_irflow_reduced.dot"]