diff options
| author | David Rubin <daviru007@icloud.com> | 2024-04-13 23:11:32 -0700 |
|---|---|---|
| committer | David Rubin <daviru007@icloud.com> | 2024-05-11 02:17:24 -0700 |
| commit | d9e0cafe64dd7dc56fc2d46bc29c18630a108356 (patch) | |
| tree | ff0850456daae960d0530068d4d8e76ef94b4e63 /test/behavior/bool.zig | |
| parent | e622485df8d162fd2696b6ab1149262aa6b74407 (diff) | |
| download | zig-d9e0cafe64dd7dc56fc2d46bc29c18630a108356.tar.gz zig-d9e0cafe64dd7dc56fc2d46bc29c18630a108356.zip | |
riscv: add stage2_riscv to test matrix and bypass failing tests
Diffstat (limited to 'test/behavior/bool.zig')
| -rw-r--r-- | test/behavior/bool.zig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/behavior/bool.zig b/test/behavior/bool.zig index 608fb20ca7..72c1dff336 100644 --- a/test/behavior/bool.zig +++ b/test/behavior/bool.zig @@ -9,6 +9,8 @@ test "bool literals" { } test "cast bool to int" { + if (builtin.zig_backend == .stage2_riscv64) return error.SkipZigTest; + const t = true; const f = false; try expectEqual(@as(u32, 1), @intFromBool(t)); |
