diff options
Diffstat (limited to 'test/test_all.py')
| -rw-r--r-- | test/test_all.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/test_all.py b/test/test_all.py index 5c6bbbb2..c449ef33 100644 --- a/test/test_all.py +++ b/test/test_all.py @@ -13,6 +13,7 @@ TAGS = {"regression": "REGRESSION", # Regression tests "long": "LONG", # Very time consumming tests "llvm": "LLVM", # LLVM dependency is required "z3": "Z3", # Z3 dependecy is needed + "qemu": "QEMU", # QEMU tests (several tests) } # Regression tests @@ -71,6 +72,8 @@ class QEMUTest(RegressionTest): "--jitter", jitter, ] + self.tags.append(TAGS["qemu"]) + # Test name -> supported jitter engines QEMU_TESTS = { |