authorgravatar for mlugg@mlugg.co.ukMatthew Lugg <mlugg@mlugg.co.uk> 2025-10-31 13:50:29+00:00
committergravatar for mlugg@mlugg.co.ukMatthew Lugg <mlugg@mlugg.co.uk> 2025-11-12 16:00:16+00:00
log99a7884308d288bd39df9192c9094439b179ff60
tree7334662b54c13afa71490bbca3b93b2de3bd93ab
parent6576c3b898fb57a588c4344211c06b079a82ee91
signaturelock-open Commit is signed but in an unrecognized format.

behavior: disable test on cbe

This isn't so much a regression as it is foreshadowing of accepted proposal https://github.com/ziglang/zig/issues/24657.

1 files changed, 3 insertions(+), 0 deletions(-)

test/behavior/union.zig+3
......@@ -218,10 +218,13 @@ test "union with specified enum tag" {
218218}
219219
220220test "packed union generates correctly aligned type" {
221 // This test will be removed after the following accepted proposal is implemented:
222 // https://github.com/ziglang/zig/issues/24657
221223 if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest;
222224 if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO
223225 if (builtin.zig_backend == .stage2_spirv) return error.SkipZigTest;
224226 if (builtin.zig_backend == .stage2_riscv64) return error.SkipZigTest;
227 if (builtin.zig_backend == .stage2_c) return error.SkipZigTest;
225228
226229 const U = packed union {
227230 f1: *const fn () error{TestUnexpectedResult}!void,