diff options
| author | Camille Mougey <camille.mougey@cea.fr> | 2014-10-31 12:36:35 +0100 |
|---|---|---|
| committer | Camille Mougey <camille.mougey@cea.fr> | 2014-10-31 12:45:35 +0100 |
| commit | ddffef1d5057665bce196a20c778e2fe240e3191 (patch) | |
| tree | 130e54843fdd10b1503390f290fa964acf326fa0 | |
| parent | 252e52004ee16661b682b30802ccdb69d92c7723 (diff) | |
| download | miasm-ddffef1d5057665bce196a20c778e2fe240e3191.tar.gz miasm-ddffef1d5057665bce196a20c778e2fe240e3191.zip | |
TestAll: Add products for 'unpack_upx' example
| -rw-r--r-- | test/test_all.py | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/test/test_all.py b/test/test_all.py index b3059ae7..22e4a7ca 100644 --- a/test/test_all.py +++ b/test/test_all.py @@ -114,8 +114,14 @@ for script in [["symbol_exec.py"], ]: testset += Test(script, base_dir="example") ## Jitter -for script, dep in [(["unpack_upx.py", "box_upx.exe"], []), # Take 5 mins on a Core i5 - (["test_jit_x86_32.py", "x86_32_sc.bin"], []), + +# Take 5 mins on a Core i5 +for jitter in ["tcc", "llvm", "python"]: + testset += Test(["unpack_upx.py", "box_upx.exe"] + ["--jitter", jitter], + base_dir="example", + products=["box_upx_exe_unupx.bin"]) + +for script, dep in [(["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_msp430]), |