| ... | ... | @@ -942,6 +942,14 @@ pub fn addModuleTests(b: *std.Build, options: ModuleTestOptions) *Step { |
| 942 | 942 | if (test_target.use_llvm == false and mem.eql(u8, options.name, "compiler-rt")) |
| 943 | 943 | continue; |
| 944 | 944 | |
| 945 | // TODO get the x86_64 self-hosted backend tests passing on Windows |
| 946 | if (test_target.target.getCpuArch() == .x86_64 and |
| 947 | test_target.target.getOsTag() == .windows and |
| 948 | test_target.use_llvm == false) |
| 949 | { |
| 950 | continue; |
| 951 | } |
| 952 | |
| 945 | 953 | // TODO get compiler-rt tests passing for wasm32-wasi |
| 946 | 954 | // currently causes "LLVM ERROR: Unable to expand fixed point multiplication." |
| 947 | 955 | if (test_target.target.getCpuArch() == .wasm32 and |