diff options
| author | Camille Mougey <camille.mougey@cea.fr> | 2015-01-23 12:39:48 +0100 |
|---|---|---|
| committer | Camille Mougey <camille.mougey@cea.fr> | 2015-01-23 17:24:43 +0100 |
| commit | 29a65d37ba8cc3c1e4b06807d4dee3ef32bb2e8f (patch) | |
| tree | 27b80e0e813e85dd0ff73586c74a9de90a7b4858 /test | |
| parent | a5f035142ce772f7868c0a67cb60d876dedfc0dc (diff) | |
| download | miasm-29a65d37ba8cc3c1e4b06807d4dee3ef32bb2e8f.tar.gz miasm-29a65d37ba8cc3c1e4b06807d4dee3ef32bb2e8f.zip | |
Example/ASM: Test the second ARM (arm_sc.S) example
Diffstat (limited to 'test')
| -rw-r--r-- | test/test_all.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/test_all.py b/test/test_all.py index 86c8241a..cb0adf64 100644 --- a/test/test_all.py +++ b/test/test_all.py @@ -128,6 +128,8 @@ for source in test_box_names: test_armb = ExampleShellcode(["armb", "arm_simple.S", "demo_arm_b.bin"]) test_arml = ExampleShellcode(["arml", "arm_simple.S", "demo_arm_l.bin"]) +test_armb_sc = ExampleShellcode(["armb", "arm_sc.S", "demo_arm2_b.bin"]) +test_arml_sc = ExampleShellcode(["arml", "arm_sc.S", "demo_arm2_l.bin"]) test_armtb = ExampleShellcode(["armtb", "armt.S", "demo_armt_b.bin"]) test_armtl = ExampleShellcode(["armtl", "armt.S", "demo_armt_l.bin"]) test_msp430 = ExampleShellcode(["msp430", "msp430.S", "msp430_sc.bin"]) @@ -138,6 +140,8 @@ test_x86_64 = ExampleShellcode(["x86_64", "x86_64.S", "demo_x86_64.bin", testset += test_armb testset += test_arml +testset += test_armb_sc +testset += test_arml_sc testset += test_armtb testset += test_armtl testset += test_msp430 @@ -177,6 +181,10 @@ testset += ExampleDisasmFull(["arml", Example.get_sample("demo_arm_l.bin"), "0"], depends=[test_arml]) testset += ExampleDisasmFull(["armb", Example.get_sample("demo_arm_b.bin"), "0"], depends=[test_armb]) +testset += ExampleDisasmFull(["arml", Example.get_sample("demo_arm2_l.bin"), + "0"], depends=[test_arml_sc]) +testset += ExampleDisasmFull(["armb", Example.get_sample("demo_arm2_b.bin"), + "0"], depends=[test_armb_sc]) testset += ExampleDisasmFull(["armtl", Example.get_sample("demo_armt_l.bin"), "0"], depends=[test_armtl]) testset += ExampleDisasmFull(["armtb", Example.get_sample("demo_armt_b.bin"), |