diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2018-07-10 19:04:39 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-07-10 19:04:39 +0200 |
| commit | c48a8ba7ed9110df962df94ab9db314b2873c6b2 (patch) | |
| tree | 6e14f8fdaa4471dc1fb8fdcd6bfe9e271500a803 /test/test_all.py | |
| parent | a5221c1b926af7716860fd27039528cfb54d6095 (diff) | |
| parent | d65bbbcc4a7d3c0fff9e9c80a04e23bbc4bf5333 (diff) | |
| download | miasm-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-x | test/test_all.py | 4 |
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) |