about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAjax <commial@gmail.com>2018-07-10 13:21:23 +0200
committerAjax <commial@gmail.com>2018-07-10 14:14:35 +0200
commitd65bbbcc4a7d3c0fff9e9c80a04e23bbc4bf5333 (patch)
tree783c61d5eb2b04e0b6e9ca77036bfef228d5f6dd
parentf23860a734e4c10e4ca13586c2e5f1127f325ee5 (diff)
downloadmiasm-d65bbbcc4a7d3c0fff9e9c80a04e23bbc4bf5333.tar.gz
miasm-d65bbbcc4a7d3c0fff9e9c80a04e23bbc4bf5333.zip
TestALL: add QEMU sse test for LLVM and GCC
-rwxr-xr-xtest/test_all.py4
1 files changed, 4 insertions, 0 deletions
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)