about summary refs log tree commit diff stats
path: root/test/test_all.py
diff options
context:
space:
mode:
authorAjax <commial@gmail.com>2018-12-04 17:33:09 +0100
committerAjax <commial@gmail.com>2018-12-04 17:33:09 +0100
commit6afa62517fec1ec597020aec469875e404882e5b (patch)
tree27ba2062fd4e97b79ad169453865002765880f81 /test/test_all.py
parentdfa0c750566dbb7a854bbc6b90920b96865fe68c (diff)
downloadmiasm-6afa62517fec1ec597020aec469875e404882e5b.tar.gz
miasm-6afa62517fec1ec597020aec469875e404882e5b.zip
Tests/QEMU-x86_64: Avoid test requiring LLVM's compiler-rt on Windows
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 d2aa5d20..42843e90 100755
--- a/test/test_all.py
+++ b/test/test_all.py
@@ -235,6 +235,10 @@ QEMU_TESTS_x86_64 = [
 
 for test_name in QEMU_TESTS_x86_64:
     for jitter in QEMUTestx86_64.jitter_engines:
+        if is_win and jitter == "llvm" and test_name in [
+                "mul", "rcl", "rcr"
+        ]:
+            continue
         tags = [TAGS[jitter]] if jitter in TAGS else []
         testset += QEMUTestx86_64(test_name, jitter, tags=tags)