diff options
| author | Ajax <commial@gmail.com> | 2015-04-30 18:06:06 +0200 |
|---|---|---|
| committer | Ajax <commial@gmail.com> | 2015-04-30 19:12:43 +0200 |
| commit | 039c2ca9d9a4e2359b3a4c004b1df821cc38f489 (patch) | |
| tree | 2a88424bbb5387c83fddf9104d03e3cd8f29e57d /test/test_all.py | |
| parent | 7c4b58d2fb424df01bf71ba3ec644b41fcc9a2d0 (diff) | |
| download | miasm-039c2ca9d9a4e2359b3a4c004b1df821cc38f489.tar.gz miasm-039c2ca9d9a4e2359b3a4c004b1df821cc38f489.zip | |
GraphDataflow: A function where never executed / tested
Diffstat (limited to 'test/test_all.py')
| -rw-r--r-- | test/test_all.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/test/test_all.py b/test/test_all.py index f52856a3..7082e3d7 100644 --- a/test/test_all.py +++ b/test/test_all.py @@ -294,10 +294,11 @@ class ExampleExpression(Example): example_dir = "expression" -testset += ExampleExpression(["graph_dataflow.py", - Example.get_sample("sc_connect_back.bin"), - "0x2e"], - products=["data.txt"]) +for args in [[], ["--symb"]]: + testset += ExampleExpression(["graph_dataflow.py", + Example.get_sample("sc_connect_back.bin"), + "0x2e"] + args, + products=["data.txt"]) testset += ExampleExpression(["asm_to_ir.py"], products=["graph.txt", "graph2.txt"]) testset += ExampleExpression(["get_read_write.py"], |