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 {...@@ -5,7 +5,7 @@ pub fn build(b: *std.Build) void {
5 const test_step = b.step("test", "Test it");5 const test_step = b.step("test", "Test it");
6 b.default_step = test_step;6 b.default_step = test_step;
77
8 if (builtin.os.tag == .windows and builtin.cpu.arch == .aarch64) {8 if (builtin.os.tag == .windows) {
9 // https://github.com/ziglang/zig/issues/169659 // https://github.com/ziglang/zig/issues/16965
10 return;10 return;
11 }11 }
test/standalone/load_dynamic_library/build.zig+1-1
...@@ -10,7 +10,7 @@ pub fn build(b: *std.Build) void {...@@ -10,7 +10,7 @@ pub fn build(b: *std.Build) void {
1010
11 if (builtin.os.tag == .wasi) return;11 if (builtin.os.tag == .wasi) return;
1212
13 if (builtin.os.tag == .windows and builtin.cpu.arch == .aarch64) {13 if (builtin.os.tag == .windows) {
14 // https://github.com/ziglang/zig/issues/1696014 // https://github.com/ziglang/zig/issues/16960
15 return;15 return;
16 }16 }
test/standalone/shared_library/build.zig+1-3
...@@ -4,9 +4,7 @@ pub fn build(b: *std.Build) void {...@@ -4,9 +4,7 @@ pub fn build(b: *std.Build) void {
4 const test_step = b.step("test", "Test it");4 const test_step = b.step("test", "Test it");
5 b.default_step = test_step;5 b.default_step = test_step;
66
7 if (@import("builtin").os.tag == .windows and7 if (@import("builtin").os.tag == .windows) {
8 @import("builtin").cpu.arch == .aarch64)
9 {
10 // https://github.com/ziglang/zig/issues/169598 // https://github.com/ziglang/zig/issues/16959
11 return;9 return;
12 }10 }