diff options
Diffstat (limited to 'test/test_all.py')
| -rw-r--r-- | test/test_all.py | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/test/test_all.py b/test/test_all.py index 4264927b..23e45246 100644 --- a/test/test_all.py +++ b/test/test_all.py @@ -85,11 +85,15 @@ all_tests = { ["expression/asm_to_ir.py"], ["expression/expr_grapher.py"], ["expression/simplification_add.py"], - ["test_dis.py", "-g", "-s", "-m", "arm", "demo_arm.bin", "0"], + ["test_dis.py", "-g", "-s", "-m", "arml", "demo_arm_l.bin", "0"], + ["test_dis.py", "-g", "-s", "-m", "armb", "demo_arm_b.bin", "0"], + ["test_dis.py", "-g", "-s", "-m", "armtl", "demo_armt_l.bin", "0"], + ["test_dis.py", "-g", "-s", "-m", "armtb", "demo_armt_b.bin", "0"], ["test_dis.py", "-g", "-s", "-m", "x86_32", "box_x86_32.bin", "0x401000"], ["test_dis.py", "-g", "-s", "-m", "msp430", "msp430_sc.bin", "0"], - ["test_dis.py", "-g", "-s", "-m", "mips32l", "mips32_sc.bin", "0"], + ["test_dis.py", "-g", "-s", "-m", "mips32l", "mips32_sc_l.bin", "0"], + ["test_dis.py", "-g", "-s", "-m", "mips32b", "mips32_sc_b.bin", "0"], ["expression/solve_condition_stp.py", "expression/simple_test.bin"], ], @@ -99,7 +103,7 @@ all_tests = { ["test_jit_x86_32.py", "x86_32_sc.bin"], ["test_jit_arm.py", "md5_arm", "-a", "A684"], ["test_jit_msp430.py", "msp430_sc.bin", "0"], - ["test_jit_mips32.py", "mips32_sc.bin", "0"], + ["test_jit_mips32.py", "mips32_sc_l.bin", "0"], ["sandbox_pe_x86_32.py", "box_x86_32.bin"], ["sandbox_pe_x86_32.py", "box_x86_32_enc.bin"], ["sandbox_pe_x86_32.py", "box_x86_32_mod.bin"], |