diff options
| author | Ajax <commial@gmail.com> | 2019-01-14 11:49:58 +0100 |
|---|---|---|
| committer | Ajax <commial@gmail.com> | 2019-01-14 11:50:38 +0100 |
| commit | 7efbb4b9235ebe84cf658e5995c7e5d26efdf051 (patch) | |
| tree | c56111adbee146004ec95f06fc37848dcf64d04d | |
| parent | a1ffa82a9812c770bfc3aa3a474eb086c787830a (diff) | |
| download | miasm-7efbb4b9235ebe84cf658e5995c7e5d26efdf051.tar.gz miasm-7efbb4b9235ebe84cf658e5995c7e5d26efdf051.zip | |
Test_all: add a TAG for python jitter based tests
| -rwxr-xr-x | test/test_all.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/test_all.py b/test/test_all.py index 4b97ffba..f3bcc477 100755 --- a/test/test_all.py +++ b/test/test_all.py @@ -21,6 +21,7 @@ TAGS = {"regression": "REGRESSION", # Regression tests "long": "LONG", # Very time consumming tests "llvm": "LLVM", # LLVM dependency is required "gcc": "GCC", # GCC based tests + "python": "PYTHON", # Python jitted tests "z3": "Z3", # Z3 dependency is needed "qemu": "QEMU", # QEMU tests (several tests) "cparser": "CPARSER", # pycparser is needed @@ -109,7 +110,7 @@ for script in ["x86/sem.py", continue testset += ArchUnitTest(script, jitter, base_dir="arch", tags=tags) -testset += ArchUnitTest("x86/unit/access_xmm.py", "python", base_dir="arch") +testset += ArchUnitTest("x86/unit/access_xmm.py", "python", base_dir="arch", tags=[TAGS["python"]]) ### QEMU regression tests class QEMUTest(RegressionTest): @@ -750,7 +751,7 @@ class ExampleJitterNoPython(ExampleJitter): for jitter in ExampleJitter.jitter_engines: # Take 5 min on a Core i5 - tags = {"python": [TAGS["long"]], + tags = {"python": [TAGS["long"], TAGS["python"]], "llvm": [TAGS["llvm"]], "gcc": [TAGS["gcc"]], } |