about summary refs log tree commit diff stats
path: root/test/test_all.py
diff options
context:
space:
mode:
authorCamille Mougey <camille.mougey@cea.fr>2015-01-08 18:09:29 +0100
committerCamille Mougey <camille.mougey@cea.fr>2015-01-23 17:24:42 +0100
commitdfc2f102e8848c15d7a87a3fc000396eb347bbc4 (patch)
treeb37c6ce7a8d9a226f8c127f8505af2cf12a931f0 /test/test_all.py
parent638ac8e81238f3a6271034e8181701f41e3148cc (diff)
downloadmiasm-dfc2f102e8848c15d7a87a3fc000396eb347bbc4.tar.gz
miasm-dfc2f102e8848c15d7a87a3fc000396eb347bbc4.zip
Example/Test_Dis: OptParse to ArgParse
Diffstat (limited to '')
-rw-r--r--test/test_all.py5
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"]