diff options
| author | mlugg <mlugg@mlugg.co.uk> | 2024-10-19 20:06:04 +0100 |
|---|---|---|
| committer | mlugg <mlugg@mlugg.co.uk> | 2024-10-19 20:06:04 +0100 |
| commit | f7d679ceae2403d4137d75d4afe32a3e8eb0cf16 (patch) | |
| tree | 40a952d23748d8833ce35622f99c13c837de448b /test | |
| parent | 8d5ac6bdeaef032b2beaeea4bfa4a5bfac9b8263 (diff) | |
| download | zig-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.zig | 1 |
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(); |
