authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-09-22 16:20:57-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-10-14 00:35:59-07:00
loge66e404d6156111ab58c23a30cbd126aefdea1f6
tree81e999140c3773e8836e8ac9119b9ebf52616a92
parent6ba7d0c435180b47280a2d9b9043dd71ed0c7c87

these tests are failing on x86_64-windows too


3 files changed, 3 insertions(+), 5 deletions(-)

test/standalone/c_compiler/build.zig+1-1
......@@ -5,7 +5,7 @@ pub fn build(b: *std.Build) void {
55 const test_step = b.step("test", "Test it");
66 b.default_step = test_step;
77
8 if (builtin.os.tag == .windows and builtin.cpu.arch == .aarch64) {
8 if (builtin.os.tag == .windows) {
99 // https://github.com/ziglang/zig/issues/16965
1010 return;
1111 }
test/standalone/load_dynamic_library/build.zig+1-1
......@@ -10,7 +10,7 @@ pub fn build(b: *std.Build) void {
1010
1111 if (builtin.os.tag == .wasi) return;
1212
13 if (builtin.os.tag == .windows and builtin.cpu.arch == .aarch64) {
13 if (builtin.os.tag == .windows) {
1414 // https://github.com/ziglang/zig/issues/16960
1515 return;
1616 }
test/standalone/shared_library/build.zig+1-3
......@@ -4,9 +4,7 @@ pub fn build(b: *std.Build) void {
44 const test_step = b.step("test", "Test it");
55 b.default_step = test_step;
66
7 if (@import("builtin").os.tag == .windows and
8 @import("builtin").cpu.arch == .aarch64)
9 {
7 if (@import("builtin").os.tag == .windows) {
108 // https://github.com/ziglang/zig/issues/16959
119 return;
1210 }