diff options
| author | Camille Mougey <camille.mougey@cea.fr> | 2014-12-04 17:28:56 +0100 |
|---|---|---|
| committer | Camille Mougey <camille.mougey@cea.fr> | 2014-12-04 17:29:44 +0100 |
| commit | 1341db89091669315df31169ed3d1e229fc88d19 (patch) | |
| tree | 6c9192192e225313867651ae875b9421c7ef2514 /test/test_all.py | |
| parent | f1ef12bb57495d01281bde28869134452e598af4 (diff) | |
| download | miasm-1341db89091669315df31169ed3d1e229fc88d19.tar.gz miasm-1341db89091669315df31169ed3d1e229fc88d19.zip | |
TestAll: Some example products were missing
Diffstat (limited to '')
| -rw-r--r-- | test/test_all.py | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/test/test_all.py b/test/test_all.py index b02f2467..b0ab548f 100644 --- a/test/test_all.py +++ b/test/test_all.py @@ -123,18 +123,23 @@ testset += Example(["test_dis.py", "-g", "-s", "-m", "mips32l", "mips32_sc_l.bin "0"], depends=[test_mips32]) testset += Example(["test_dis.py", "-g", "-s", "-m", "mips32b", "mips32_sc_b.bin", "0"], depends=[test_mips32]) +testset += Example(["expression/graph_dataflow.py", + "expression/sc_connect_back.bin", "0x2e"], + products=["data.txt"]) +testset += Example(["expression/asm_to_ir.py"], + products=["graph.txt", "graph2.txt"]) +testset += Example(["expression/get_read_write.py"], + products=["graph_instr.txt"]) +testset += Example(["expression/solve_condition_stp.py", + "expression/simple_test.bin"], + products=["graph_instr.txt"]) + for script in [["symbol_exec.py"], ["expression/basic_op.py"], - ["expression/get_read_write.py"], ["expression/basic_simplification.py"], - ["expression/graph_dataflow.py", - "expression/sc_connect_back.bin", "0x2e"], ["expression/simplification_tools.py"], - ["expression/asm_to_ir.py"], ["expression/expr_grapher.py"], ["expression/simplification_add.py"], - ["expression/solve_condition_stp.py", - "expression/simple_test.bin"], ]: testset += Example(script) ## Jitter |