diff options
| author | Camille Mougey <camille.mougey@cea.fr> | 2015-01-08 18:09:29 +0100 |
|---|---|---|
| committer | Camille Mougey <camille.mougey@cea.fr> | 2015-01-23 17:24:42 +0100 |
| commit | dfc2f102e8848c15d7a87a3fc000396eb347bbc4 (patch) | |
| tree | b37c6ce7a8d9a226f8c127f8505af2cf12a931f0 /test/test_all.py | |
| parent | 638ac8e81238f3a6271034e8181701f41e3148cc (diff) | |
| download | miasm-dfc2f102e8848c15d7a87a3fc000396eb347bbc4.tar.gz miasm-dfc2f102e8848c15d7a87a3fc000396eb347bbc4.zip | |
Example/Test_Dis: OptParse to ArgParse
Diffstat (limited to '')
| -rw-r--r-- | test/test_all.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/test/test_all.py b/test/test_all.py index 3f25dab2..11de10b2 100644 --- a/test/test_all.py +++ b/test/test_all.py @@ -123,14 +123,13 @@ for script in [["disasm_single_instr.py"], class ExampleTestDis(Example): """TestDis specificities: - script: test_dis.py - - flags: -g -s -m + - flags: -g -s - @products: graph_execflow.txt, graph_irflow.txt, lines.txt, out.txt """ def __init__(self, *args, **kwargs): super(ExampleTestDis, self).__init__(*args, **kwargs) - self.command_line = ["test_dis.py", "-g", "-s", "-m"] + \ - self.command_line + self.command_line = ["test_dis.py", "-g", "-s"] + self.command_line self.products += ["graph_execflow.txt", "graph_irflow.txt", "lines.txt", "out.txt"] |