Commit e66e404d61

Andrew Kelley <andrew@ziglang.org>
2023-09-23 01:20:57
these tests are failing on x86_64-windows too
1 parent 6ba7d0c
Changed files (3)
test
standalone
c_compiler
load_dynamic_library
shared_library
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;
     }
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;
     }
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;
     }