about summary refs log tree commit diff stats
path: root/test/test_all.py
diff options
context:
space:
mode:
authorserpilliere <serpilliere@users.noreply.github.com>2019-01-14 15:27:18 +0100
committerGitHub <noreply@github.com>2019-01-14 15:27:18 +0100
commitb18334c3aa4094086e8395e2ffa78faf8b1bf361 (patch)
tree0733c4ce963366a1687048fdfcc0b7176f268439 /test/test_all.py
parent056ef4cd26c98cd8b9c121f2a791c01c5a7052a8 (diff)
parentff730af7966b1ba966bcd9e2f8687350f46978d0 (diff)
downloadmiasm-b18334c3aa4094086e8395e2ffa78faf8b1bf361.tar.gz
miasm-b18334c3aa4094086e8395e2ffa78faf8b1bf361.zip
Merge pull request #938 from commial/fix/expand-tests-travis
Travis: avoid redundancy between parallel tests cases
Diffstat (limited to 'test/test_all.py')
-rwxr-xr-xtest/test_all.py5
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"]],
             }