Commit f7d679ceae

mlugg <mlugg@mlugg.co.uk>
2024-10-19 21:06:04
riscv: disable failing test
Looks like the self-hosted riscv64 backend can't handle `std.meta.eql` involving the new `CallingConvention` right now.
1 parent 8d5ac6b
Changed files (1)
test
behavior
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();