about summary refs log tree commit diff stats
path: root/test/test_all.py
diff options
context:
space:
mode:
authorserpilliere <serpilliere@users.noreply.github.com>2018-07-10 19:04:39 +0200
committerGitHub <noreply@github.com>2018-07-10 19:04:39 +0200
commitc48a8ba7ed9110df962df94ab9db314b2873c6b2 (patch)
tree6e14f8fdaa4471dc1fb8fdcd6bfe9e271500a803 /test/test_all.py
parenta5221c1b926af7716860fd27039528cfb54d6095 (diff)
parentd65bbbcc4a7d3c0fff9e9c80a04e23bbc4bf5333 (diff)
downloadmiasm-c48a8ba7ed9110df962df94ab9db314b2873c6b2.tar.gz
miasm-c48a8ba7ed9110df962df94ab9db314b2873c6b2.zip
Merge pull request #795 from commial/features/better-float-sse
Better float support & additionnal SSE
Diffstat (limited to 'test/test_all.py')
-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 a10ab026..665fc3a5 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)