authorgravatar for dev@luna.glLuna Schwalbe <dev@luna.gl> 2025-09-04 16:15:00+02:00
committergravatar for dev@luna.glLuna Schwalbe <dev@luna.gl> 2025-09-04 16:15:00+02:00
loga9f06d16fd6fe6d0eae2a2a545986fa9e53ef9a8
treed2d05af752f63b33cd742d631259722f9034d26d
parentd94e061ade545f3fbdd4ab1a18f860b05050ebf6
signaturelock-open Commit is signed but in an unrecognized format.

Reenable std.fmt.test.vector for riscv64

The vector codegen issue as described in https://github.com/ziglang/zig/issues/4486 has been fixed upstream.

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

lib/std/fmt.zig-4
......@@ -1211,10 +1211,6 @@ test "positional/alignment/width/precision" {
12111211
12121212test "vector" {
12131213 if ((builtin.cpu.arch == .armeb or builtin.cpu.arch == .thumbeb) and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/22060
1214 if (builtin.target.cpu.arch == .riscv64) {
1215 // https://github.com/ziglang/zig/issues/4486
1216 return error.SkipZigTest;
1217 }
12181214
12191215 const vbool: @Vector(4, bool) = [_]bool{ true, false, true, false };
12201216 const vi64: @Vector(4, i64) = [_]i64{ -2, -1, 0, 1 };