about summary refs log tree commit diff stats
path: root/test/test_all.py
diff options
context:
space:
mode:
authorCamille Mougey <camille.mougey@cea.fr>2014-10-31 12:46:23 +0100
committerCamille Mougey <camille.mougey@cea.fr>2014-10-31 12:46:23 +0100
commitb4745bf9980db9aee566a16f3725a9bd2d887860 (patch)
tree130e54843fdd10b1503390f290fa964acf326fa0 /test/test_all.py
parent8e7d594ecbb94ff06dc0bd34f713950c9129f198 (diff)
parentddffef1d5057665bce196a20c778e2fe240e3191 (diff)
downloadmiasm-b4745bf9980db9aee566a16f3725a9bd2d887860.tar.gz
miasm-b4745bf9980db9aee566a16f3725a9bd2d887860.zip
Merge branch 'issue-garbage-upx'
Diffstat (limited to 'test/test_all.py')
-rw-r--r--test/test_all.py10
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]),