zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 5b7e332b28db0055a708dc29a8a6d0df2390952c (tree)
parent fd9b55a6405f908237285ee8280648ad368fccfc
Author: Andrew Kelley <andrew@ziglang.org>
Date:   Wed, 20 Jul 2022 16:17:33 -0700

disable new behavior test in stage1

I regressed this in 379beceffd1b0a0b0d8f3163dc02eba1e53ffa39; sorry
about that.

Diffstat:
Mtest/behavior/packed-struct.zig | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/test/behavior/packed-struct.zig b/test/behavior/packed-struct.zig @@ -415,6 +415,7 @@ test "byte-aligned field pointer offsets" { } test "load pointer from packed struct" { + if (builtin.zig_backend == .stage1) return error.SkipZigTest; if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest;