diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2017-02-13 11:24:32 +0100 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2017-02-17 14:50:40 +0100 |
| commit | f66a44ed97f792596c84f1110e1d563ac8146766 (patch) | |
| tree | 64941661f7bb2cacd4d01917effa8da55f0301b5 /test | |
| parent | ae4941a6e8777f3a24dedbb0410b34478b4ed15f (diff) | |
| download | miasm-f66a44ed97f792596c84f1110e1d563ac8146766.tar.gz miasm-f66a44ed97f792596c84f1110e1d563ac8146766.zip | |
Tests: add asm human
Diffstat (limited to 'test')
| -rwxr-xr-x | test/test_all.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/test_all.py b/test/test_all.py index e405bcec..65a30c69 100755 --- a/test/test_all.py +++ b/test/test_all.py @@ -412,6 +412,8 @@ test_x86_32_if_reg = ExampleShellcode(['x86_32', 'x86_32_if_reg.S', "x86_32_if_r test_x86_32_seh = ExampleShellcode(["x86_32", "x86_32_seh.S", "x86_32_seh.bin", "--PE"]) +test_human = ExampleShellcode(["x86_64", "human.S", "human.bin"]) + testset += test_armb testset += test_arml testset += test_aarch64b @@ -427,6 +429,8 @@ testset += test_x86_64 testset += test_x86_32_if_reg testset += test_x86_32_seh +testset += test_human + class ExampleDisassembler(Example): """Disassembler examples specificities: - script path begins with "disasm/" |