about summary refs log tree commit diff stats
path: root/test/test_all.py
diff options
context:
space:
mode:
authorserpilliere <serpilliere@users.noreply.github.com>2015-12-12 14:35:24 +0100
committerserpilliere <serpilliere@users.noreply.github.com>2015-12-12 14:35:24 +0100
commitb32eb145fce7dd09bef025a9f82b2507bd4e02ee (patch)
tree2c65f005adb7830853664451aed3f2cd05a9be73 /test/test_all.py
parent635f372fa846b28252ab86b344a2565f51e2302c (diff)
parentd95af9858230c41449d6fd487a93bdc337780ea7 (diff)
downloadmiasm-b32eb145fce7dd09bef025a9f82b2507bd4e02ee.tar.gz
miasm-b32eb145fce7dd09bef025a9f82b2507bd4e02ee.zip
Merge pull request #290 from commial/refactor-ira
Refactor ira
Diffstat (limited to 'test/test_all.py')
-rw-r--r--test/test_all.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/test_all.py b/test/test_all.py
index c449ef33..71ea51a5 100644
--- a/test/test_all.py
+++ b/test/test_all.py
@@ -337,13 +337,15 @@ class ExampleDisasmFull(ExampleDisassembler):
     """DisasmFull specificities:
     - script: disasm/full.py
     - flags: -g -s
-    - @products: graph_execflow.dot, graph_irflow.dot, lines.dot, out.dot
+    - @products: graph_execflow.dot, graph_irflow.dot, graph_irflow_raw.dot,
+                 lines.dot, out.dot
     """
 
     def __init__(self, *args, **kwargs):
         super(ExampleDisasmFull, self).__init__(*args, **kwargs)
         self.command_line = ["full.py", "-g", "-s", "-m"] + self.command_line
-        self.products += ["graph_execflow.dot", "graph_irflow.dot", "lines.dot"]
+        self.products += ["graph_execflow.dot", "graph_irflow.dot",
+                          "graph_irflow_raw.dot", "lines.dot"]
 
 
 testset += ExampleDisasmFull(["arml", Example.get_sample("demo_arm_l.bin"),