commit e66e404d6156111ab58c23a30cbd126aefdea1f6 (tree)
parent 6ba7d0c435180b47280a2d9b9043dd71ed0c7c87
Author: Andrew Kelley <andrew@ziglang.org>
Date: Fri, 22 Sep 2023 16:20:57 -0700
these tests are failing on x86_64-windows too
Diffstat:
3 files changed, 3 insertions(+), 5 deletions(-)
diff --git a/test/standalone/c_compiler/build.zig b/test/standalone/c_compiler/build.zig
@@ -5,7 +5,7 @@ pub fn build(b: *std.Build) void {
const test_step = b.step("test", "Test it");
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
return;
}
diff --git a/test/standalone/load_dynamic_library/build.zig b/test/standalone/load_dynamic_library/build.zig
@@ -10,7 +10,7 @@ pub fn build(b: *std.Build) void {
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
return;
}
diff --git a/test/standalone/shared_library/build.zig b/test/standalone/shared_library/build.zig
@@ -4,9 +4,7 @@ pub fn build(b: *std.Build) void {
const test_step = b.step("test", "Test it");
b.default_step = test_step;
- if (@import("builtin").os.tag == .windows and
- @import("builtin").cpu.arch == .aarch64)
- {
+ if (@import("builtin").os.tag == .windows) {
// https://github.com/ziglang/zig/issues/16959
return;
}