diff options
| author | Camille Mougey <camille.mougey@cea.fr> | 2015-01-06 18:05:58 +0100 |
|---|---|---|
| committer | Camille Mougey <camille.mougey@cea.fr> | 2015-01-23 17:24:41 +0100 |
| commit | db40b0755027e37ef57403ac10d3b7b0a3879221 (patch) | |
| tree | 7500be111e99f53275dfb9ba2bace2d494ee4b5a | |
| parent | 2e876ebdbc9bdb504f72c7af5492dc20985e3973 (diff) | |
| download | miasm-db40b0755027e37ef57403ac10d3b7b0a3879221.tar.gz miasm-db40b0755027e37ef57403ac10d3b7b0a3879221.zip | |
Examples: Update md5_arm location
| -rw-r--r-- | example/test_jit_arm.py | 2 | ||||
| -rw-r--r-- | test/test_all.py | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/example/test_jit_arm.py b/example/test_jit_arm.py index 12878a30..7df4461c 100644 --- a/example/test_jit_arm.py +++ b/example/test_jit_arm.py @@ -9,7 +9,7 @@ import logging from pdb import pm parser = Sandbox_Linux_arml.parser(description="""Sandbox an elf binary with arm engine -(ex: test_jit_arm.py example/md5_arm -a A684)""") +(ex: test_jit_arm.py samples/md5_arm -a A684)""") parser.add_argument("filename", help="PE Filename") parser.add_argument('-v', "--verbose", help="verbose mode", action="store_true") diff --git a/test/test_all.py b/test/test_all.py index ffbca63c..19f26641 100644 --- a/test/test_all.py +++ b/test/test_all.py @@ -180,7 +180,8 @@ for jitter in ["tcc", "llvm", "python"]: tags=tags.get(jitter, [])) for script, dep in [(["test_jit_x86_32.py", "x86_32_sc.bin"], []), - (["test_jit_arm.py", "md5_arm", "-a", "A684"], []), + (["test_jit_arm.py", Example.get_sample("md5_arm"), "-a", + "A684"], []), (["test_jit_msp430.py", "msp430_sc.bin", "0"], [test_msp430]), (["test_jit_mips32.py", "mips32_sc_l.bin", "0"], |