diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2014-10-09 17:04:36 +0200 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2014-10-09 17:04:36 +0200 |
| commit | 7101a6d9d5998102d0dc6a86ac01ba332fed3506 (patch) | |
| tree | 2981aa9d677f614f0ded8476f6e86c20e6c28107 /test/test_all.py | |
| parent | 59ef1b1d854cac3e94cd4565a0ac750de9a4c92d (diff) | |
| download | miasm-7101a6d9d5998102d0dc6a86ac01ba332fed3506.tar.gz miasm-7101a6d9d5998102d0dc6a86ac01ba332fed3506.zip | |
Arch/jit: add endianess support jitters
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"], |