From ded47deaf434ea3d6e2b5e0bdf0012c5a6eb41db Mon Sep 17 00:00:00 2001 From: Ajax Date: Tue, 17 Nov 2015 15:46:02 +0100 Subject: QEMU/test: enable 'test_misc' for both python and TCC --- test/test_all.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/test_all.py') diff --git a/test/test_all.py b/test/test_all.py index 8c1cf3f8..5c6bbbb2 100644 --- a/test/test_all.py +++ b/test/test_all.py @@ -110,9 +110,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" } -- cgit 1.4.1 From 96cb0ef19332ec5069c445da34fa75306d609c8c Mon Sep 17 00:00:00 2001 From: Ajax Date: Tue, 17 Nov 2015 15:52:11 +0100 Subject: TestALL: add a new tag 'qemu', avoiding QEMU tests On my testing machine: 42s to 3m40s --- test/test_all.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'test/test_all.py') 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 = { -- cgit 1.4.1