zig

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

commit f7d679ceae2403d4137d75d4afe32a3e8eb0cf16 (tree)
parent 8d5ac6bdeaef032b2beaeea4bfa4a5bfac9b8263
Author: mlugg <mlugg@mlugg.co.uk>
Date:   Sat, 19 Oct 2024 20:06:04 +0100

riscv: disable failing test

Looks like the self-hosted riscv64 backend can't handle `std.meta.eql`
involving the new `CallingConvention` right now.

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

diff --git a/test/behavior/type_info.zig b/test/behavior/type_info.zig @@ -350,6 +350,7 @@ fn testOpaque() !void { test "type info: function type info" { if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest; + if (builtin.zig_backend == .stage2_riscv64) return error.SkipZigTest; try testFunction(); try comptime testFunction();