these tests are failing on x86_64-windows too

This commit is contained in:
Andrew Kelley 2023-09-22 16:20:57 -07:00
parent 6ba7d0c435
commit e66e404d61
3 changed files with 3 additions and 5 deletions

View file

@ -5,7 +5,7 @@ pub fn build(b: *std.Build) void {
const test_step = b.step("test", "Test it"); const test_step = b.step("test", "Test it");
b.default_step = test_step; b.default_step = test_step;
if (builtin.os.tag == .windows and builtin.cpu.arch == .aarch64) { if (builtin.os.tag == .windows) {
// https://github.com/ziglang/zig/issues/16965 // https://github.com/ziglang/zig/issues/16965
return; return;
} }

View file

@ -10,7 +10,7 @@ pub fn build(b: *std.Build) void {
if (builtin.os.tag == .wasi) return; if (builtin.os.tag == .wasi) return;
if (builtin.os.tag == .windows and builtin.cpu.arch == .aarch64) { if (builtin.os.tag == .windows) {
// https://github.com/ziglang/zig/issues/16960 // https://github.com/ziglang/zig/issues/16960
return; return;
} }

View file

@ -4,9 +4,7 @@ pub fn build(b: *std.Build) void {
const test_step = b.step("test", "Test it"); const test_step = b.step("test", "Test it");
b.default_step = test_step; b.default_step = test_step;
if (@import("builtin").os.tag == .windows and if (@import("builtin").os.tag == .windows) {
@import("builtin").cpu.arch == .aarch64)
{
// https://github.com/ziglang/zig/issues/16959 // https://github.com/ziglang/zig/issues/16959
return; return;
} }