std.zon.parse: disable zon vector on s390x

https://github.com/ziglang/zig/issues/25957
This commit is contained in:
Alex Rønne Petersen 2025-11-17 17:57:54 +01:00
parent c82884542f
commit e179335bee
No known key found for this signature in database

View File

@ -3129,6 +3129,7 @@ test "std.zon free on error" {
test "std.zon vector" {
if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/15330
if (builtin.zig_backend == .stage2_llvm and builtin.cpu.arch == .s390x) return error.SkipZigTest; // github.com/ziglang/zig/issues/25957
const gpa = std.testing.allocator;