From d65bbbcc4a7d3c0fff9e9c80a04e23bbc4bf5333 Mon Sep 17 00:00:00 2001 From: Ajax Date: Tue, 10 Jul 2018 13:21:23 +0200 Subject: TestALL: add QEMU sse test for LLVM and GCC --- test/test_all.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'test/test_all.py') diff --git a/test/test_all.py b/test/test_all.py index 9b17aa92..1c521ab0 100755 --- a/test/test_all.py +++ b/test/test_all.py @@ -162,6 +162,7 @@ QEMU_TESTS = [ "xchg", "string", "misc", + 'sse', # Unsupported # "floats", "segs", "code16", "exceptions", "single_step" ] @@ -169,6 +170,9 @@ QEMU_TESTS = [ for test_name in QEMU_TESTS: for jitter in QEMUTest.jitter_engines: + if (test_name, jitter) in [("sse", "python")]: + # SKIP unsupported + continue tags = [TAGS[jitter]] if jitter in TAGS else [] testset += QEMUTest(test_name, jitter, tags=tags) -- cgit 1.4.1