diff options
| author | Ajax <commial@gmail.com> | 2015-03-19 10:39:01 +0100 |
|---|---|---|
| committer | Ajax <commial@gmail.com> | 2015-03-19 10:39:01 +0100 |
| commit | b9dcf09ba85c8b49819e07dbbc273e41155a01c9 (patch) | |
| tree | 82b254f78f9074a6ad375f1006fd4584d6e015da /test/test_all.py | |
| parent | 1edede413369205dd86a3be0b19ad4863b4e1ffd (diff) | |
| download | miasm-b9dcf09ba85c8b49819e07dbbc273e41155a01c9.tar.gz miasm-b9dcf09ba85c8b49819e07dbbc273e41155a01c9.zip | |
DisasmFull: The architecture is now an optionnal argument, otherwise cont.arch is used
Diffstat (limited to 'test/test_all.py')
| -rw-r--r-- | test/test_all.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_all.py b/test/test_all.py index 8d759053..6cadce9a 100644 --- a/test/test_all.py +++ b/test/test_all.py @@ -249,7 +249,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"] |