diff options
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 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) |