Commit dba758da18

Andrew Kelley <andrew@ziglang.org>
2022-08-11 21:56:46
disable failing C backend behavior test on Windows
See tracking issue #12415
1 parent 64307c2
Changed files (1)
test/tests.zig
@@ -641,6 +641,13 @@ pub fn addPkgTests(
         } else false;
         if (!want_this_mode) continue;
 
+        if (test_target.backend) |backend| {
+            if (backend == .stage2_c and builtin.os.tag == .windows) {
+                // https://github.com/ziglang/zig/issues/12415
+                continue;
+            }
+        }
+
         const libc_prefix = if (test_target.target.getOs().requiresLibC())
             ""
         else if (test_target.link_libc)