Commit 3eb260f042

Andrew Kelley <andrew@ziglang.org>
2024-03-22 03:07:08
disable failing behavior test: "comptime bitcast with fields following f80"
see tracking issue #19387
1 parent af09d93
Changed files (1)
test
behavior
test/behavior/bitcast.zig
@@ -374,6 +374,11 @@ test "comptime @bitCast packed struct to int and back" {
 }
 
 test "comptime bitcast with fields following f80" {
+    if (true) {
+        // https://github.com/ziglang/zig/issues/19387
+        return error.SkipZigTest;
+    }
+
     if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest;
     if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest;
     if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest;