about summary refs log tree commit diff stats
path: root/test/test_all.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_all.py')
-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"]