diff options
Diffstat (limited to 'test/test_all.py')
| -rwxr-xr-x[-rw-r--r--] | test/test_all.py | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/test/test_all.py b/test/test_all.py index 7cc8f6eb..59624832 100644..100755 --- a/test/test_all.py +++ b/test/test_all.py @@ -1,3 +1,5 @@ +#! /usr/bin/env python2 + import argparse import time import os @@ -55,7 +57,7 @@ class ArchUnitTest(RegressionTest): # script -> blacklisted jitter blacklist = { - "x86/unit/mn_float.py": ["python", "llvm"], + "x86/unit/mn_float.py": ["python"], } for script in ["x86/sem.py", "x86/unit/mn_strings.py", @@ -323,8 +325,11 @@ for i, test_args in enumerate(test_args): ## Jitter for script in ["jitload.py", "vm_mngr.py", + "jit_options.py", ]: - testset += RegressionTest([script], base_dir="jitter", tags=[TAGS["tcc"]]) + for engine in ArchUnitTest.jitter_engines: + testset += RegressionTest([script, engine], base_dir="jitter", + tags=[TAGS.get(engine,None)]) # Examples |