diff options
| author | Camille Mougey <commial@gmail.com> | 2018-03-05 13:18:22 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-03-05 13:18:22 +0100 |
| commit | 342614c1ec4bedd5bcc089ba01909a66b9a73aba (patch) | |
| tree | 683728881150e2406849bcc1e1c13c62bc0b6d44 /test/test_all.py | |
| parent | a3013003b9f77b017036bd1d46797052d875efbe (diff) | |
| parent | 5d5c768db62da037d156808f528cf9c1e14db8ab (diff) | |
| download | miasm-342614c1ec4bedd5bcc089ba01909a66b9a73aba.tar.gz miasm-342614c1ec4bedd5bcc089ba01909a66b9a73aba.zip | |
Merge pull request #690 from serpilliere/integrate_ppc
Integrate ppc
Diffstat (limited to 'test/test_all.py')
| -rwxr-xr-x | test/test_all.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/test_all.py b/test/test_all.py index 6aa2a97e..259a1eaa 100755 --- a/test/test_all.py +++ b/test/test_all.py @@ -547,6 +547,8 @@ testset += ExampleDisasmFull(["x86_64", Example.get_sample("demo_x86_64.bin"), "0x401000"], depends=[test_x86_64]) testset += ExampleDisasmFull(["aarch64l", Example.get_sample("md5_aarch64l"), "0x400A00"], depends=[test_aarch64l]) +testset += ExampleDisasmFull(["ppc32b", Example.get_sample("md5_ppc32b"), + "0x1000087C"]) testset += ExampleDisasmFull(["x86_32", os.path.join("..", "..", "test", "arch", "x86", "qemu", "test-i386"), @@ -683,6 +685,9 @@ for script, dep in [(["x86_32.py", Example.get_sample("x86_32_sc.bin")], []), (["sandbox_elf_aarch64l.py", Example.get_sample("md5_aarch64l"), "--mimic-env"], []), + (["sandbox_elf_ppc32.py", + Example.get_sample("md5_ppc32b"), "-a", "0x1000087C"], + []), (["msp430.py", Example.get_sample("msp430_sc.bin"), "0"], [test_msp430]), (["mips32.py", Example.get_sample("mips32_sc_l.bin"), "0"], |