diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2017-01-06 14:19:49 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-01-06 14:19:49 +0100 |
| commit | c5d47bd8cdb510c78501adae460b35d122042563 (patch) | |
| tree | bf79f51e70c2ad851c94a3af4920570cce73a88d /test/test_all.py | |
| parent | f89a4638923b89c4e17fa6811a62a7d01bccbdee (diff) | |
| parent | e653d822b5a2efc5531c8e153305769a6ab17713 (diff) | |
| download | miasm-c5d47bd8cdb510c78501adae460b35d122042563.tar.gz miasm-c5d47bd8cdb510c78501adae460b35d122042563.zip | |
Merge pull request #471 from commial/feature/llvm-cache
Feature/llvm cache
Diffstat (limited to 'test/test_all.py')
| -rwxr-xr-x | test/test_all.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/test_all.py b/test/test_all.py index bec0c78d..59624832 100755 --- a/test/test_all.py +++ b/test/test_all.py @@ -325,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 |