diff options
| author | Ajax <commial@gmail.com> | 2018-12-04 17:33:09 +0100 |
|---|---|---|
| committer | Ajax <commial@gmail.com> | 2018-12-04 17:33:09 +0100 |
| commit | 6afa62517fec1ec597020aec469875e404882e5b (patch) | |
| tree | 27ba2062fd4e97b79ad169453865002765880f81 | |
| parent | dfa0c750566dbb7a854bbc6b90920b96865fe68c (diff) | |
| download | miasm-6afa62517fec1ec597020aec469875e404882e5b.tar.gz miasm-6afa62517fec1ec597020aec469875e404882e5b.zip | |
Tests/QEMU-x86_64: Avoid test requiring LLVM's compiler-rt on Windows
| -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 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) |