From 126e77becb6e82850c831bdfeca10aadca6162a3 Mon Sep 17 00:00:00 2001 From: Camille Mougey Date: Fri, 4 Dec 2015 15:35:51 +0100 Subject: Example/Disasm: update full.py to produce both IR and IRA graphes --- test/test_all.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'test/test_all.py') 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"), -- cgit 1.4.1