diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2018-04-11 10:24:03 +0200 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2018-07-09 12:31:29 +0200 |
| commit | 953676d831c314282a9e113f5617ca7a90b09be6 (patch) | |
| tree | d6f36c57d1e6d60a24b29234054178b30f2a6f0e /test/test_all.py | |
| parent | bb40c1a13c70d308091724755e00f661470046ee (diff) | |
| download | miasm-953676d831c314282a9e113f5617ca7a90b09be6.tar.gz miasm-953676d831c314282a9e113f5617ca7a90b09be6.zip | |
SSA: add tests
Diffstat (limited to 'test/test_all.py')
| -rwxr-xr-x | test/test_all.py | 4 |
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"] |