zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 9e6647582da0d7cbf8a441cefea0bb9fae18bb5c (tree)
parent e9d854743aba390d757e56714e2b323e99e5722b
Author: Andrew Kelley <andrew@ziglang.org>
Date:   Sat, 15 Apr 2023 12:45:47 -0700

disable x86_64-windows self-hosted backend behavior tests

because they are not passing on the CI yet.

Diffstat:
Mtest/tests.zig | 8++++++++
1 file changed, 8 insertions(+), 0 deletions(-)

diff --git a/test/tests.zig b/test/tests.zig @@ -942,6 +942,14 @@ pub fn addModuleTests(b: *std.Build, options: ModuleTestOptions) *Step { if (test_target.use_llvm == false and mem.eql(u8, options.name, "compiler-rt")) continue; + // TODO get the x86_64 self-hosted backend tests passing on Windows + if (test_target.target.getCpuArch() == .x86_64 and + test_target.target.getOsTag() == .windows and + test_target.use_llvm == false) + { + continue; + } + // TODO get compiler-rt tests passing for wasm32-wasi // currently causes "LLVM ERROR: Unable to expand fixed point multiplication." if (test_target.target.getCpuArch() == .wasm32 and