| ... | @@ -942,6 +942,14 @@ pub fn addModuleTests(b: *std.Build, options: ModuleTestOptions) *Step { | ... | @@ -942,6 +942,14 @@ pub fn addModuleTests(b: *std.Build, options: ModuleTestOptions) *Step { |
| 942 | if (test_target.use_llvm == false and mem.eql(u8, options.name, "compiler-rt")) | 942 | if (test_target.use_llvm == false and mem.eql(u8, options.name, "compiler-rt")) |
| 943 | continue; | 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 | // TODO get compiler-rt tests passing for wasm32-wasi | 953 | // TODO get compiler-rt tests passing for wasm32-wasi |
| 946 | // currently causes "LLVM ERROR: Unable to expand fixed point multiplication." | 954 | // currently causes "LLVM ERROR: Unable to expand fixed point multiplication." |
| 947 | if (test_target.target.getCpuArch() == .wasm32 and | 955 | if (test_target.target.getCpuArch() == .wasm32 and |