aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authormlugg <mlugg@mlugg.co.uk>2024-10-19 20:06:04 +0100
committermlugg <mlugg@mlugg.co.uk>2024-10-19 20:06:04 +0100
commitf7d679ceae2403d4137d75d4afe32a3e8eb0cf16 (patch)
tree40a952d23748d8833ce35622f99c13c837de448b /test
parent8d5ac6bdeaef032b2beaeea4bfa4a5bfac9b8263 (diff)
downloadzig-f7d679ceae2403d4137d75d4afe32a3e8eb0cf16.tar.gz
zig-f7d679ceae2403d4137d75d4afe32a3e8eb0cf16.zip
riscv: disable failing test
Looks like the self-hosted riscv64 backend can't handle `std.meta.eql` involving the new `CallingConvention` right now.
Diffstat (limited to 'test')
-rw-r--r--test/behavior/type_info.zig1
1 files changed, 1 insertions, 0 deletions
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();