From f7d679ceae2403d4137d75d4afe32a3e8eb0cf16 Mon Sep 17 00:00:00 2001 From: mlugg Date: Sat, 19 Oct 2024 20:06:04 +0100 Subject: [PATCH] riscv: disable failing test Looks like the self-hosted riscv64 backend can't handle `std.meta.eql` involving the new `CallingConvention` right now. --- test/behavior/type_info.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/test/behavior/type_info.zig b/test/behavior/type_info.zig index 44df101c98..542d6b31b2 100644 --- 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();