diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2015-05-02 19:02:26 +0200 |
|---|---|---|
| committer | serpilliere <serpilliere@users.noreply.github.com> | 2015-05-02 19:02:26 +0200 |
| commit | 363a9f0e726fab0e53031de89f2b66db7558d010 (patch) | |
| tree | 0102195e54ebb8e08f31ab27d01c0f6673aacfa8 /test/test_all.py | |
| parent | f9bf6fbbce0d984549fb11e16cb9acfc7be00c86 (diff) | |
| parent | 039c2ca9d9a4e2359b3a4c004b1df821cc38f489 (diff) | |
| download | miasm-363a9f0e726fab0e53031de89f2b66db7558d010.tar.gz miasm-363a9f0e726fab0e53031de89f2b66db7558d010.zip | |
Merge pull request #157 from commial/enhance-graphdataflow
Enhance graphdataflow
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 a9f7941f..4e530669 100644 --- a/test/test_all.py +++ b/test/test_all.py @@ -295,10 +295,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"], |