about summary refs log tree commit diff stats
path: root/test/test_all.py
diff options
context:
space:
mode:
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]),