diff options
| author | Robin Voetter <robin@voetter.nl> | 2024-06-11 08:21:04 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-11 08:21:04 +0200 |
| commit | d9bd34fd0533295044ffb4160da41f7873aff905 (patch) | |
| tree | ff2c582f019497134ad8d81f7bbb422c87d8b3d3 /test/behavior/enum.zig | |
| parent | d4bc64038ce40ac3829c3f1d0dc21dfb7484818c (diff) | |
| parent | a567f3871ec06f3e6a8c0e6424aba556f1069ccc (diff) | |
| download | zig-d9bd34fd0533295044ffb4160da41f7873aff905.tar.gz zig-d9bd34fd0533295044ffb4160da41f7873aff905.zip | |
Merge pull request #20247 from Snektron/spirv-vectors-v3
spirv: vectors v3
Diffstat (limited to 'test/behavior/enum.zig')
| -rw-r--r-- | test/behavior/enum.zig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/behavior/enum.zig b/test/behavior/enum.zig index dd2d83a289..0742c2d91c 100644 --- a/test/behavior/enum.zig +++ b/test/behavior/enum.zig @@ -1286,6 +1286,7 @@ test "matching captures causes enum equivalence" { test "large enum field values" { if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest; if (builtin.zig_backend == .stage2_riscv64) return error.SkipZigTest; + if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest; { const E = enum(u64) { min = std.math.minInt(u64), max = std.math.maxInt(u64) }; |
