about summary refs log tree commit diff stats
path: root/test/test_all.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_all.py')
-rw-r--r--test/test_all.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/test/test_all.py b/test/test_all.py
index 8c1cf3f8..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 = {
@@ -110,9 +113,9 @@ QEMU_TESTS = {
     "bcd": ("tcc", "python"),
     "xchg": ("tcc", "python"),
     "string": ("tcc", "python"),
+    "misc": ("tcc", "python"),
     # Unsupported
-    # "floats", "misc", "segs", "code16", "exceptions",
-    # "single_step"
+    # "floats", "segs", "code16", "exceptions", "single_step"
 }