diff options
| author | Robin Voetter <robin@voetter.nl> | 2024-05-31 00:09:28 +0200 |
|---|---|---|
| committer | Robin Voetter <robin@voetter.nl> | 2024-06-10 20:32:34 +0200 |
| commit | b9d738a5cff0ab896c25f1c8abe15757bcd6a0ba (patch) | |
| tree | 1a2938a226cb4605932665d9cb9fa9fcf4a81ad0 /test/behavior/enum.zig | |
| parent | 44443b833b9c86cb5a3c50b157f13ab4097226d8 (diff) | |
| download | zig-b9d738a5cff0ab896c25f1c8abe15757bcd6a0ba.tar.gz zig-b9d738a5cff0ab896c25f1c8abe15757bcd6a0ba.zip | |
spirv: disable tests that fail on pocl
Besides the Intel OpenCL CPU runtime, we can now run the
behavior tests using the Portable Computing Language. This
implementation is open-source, so it will be easier for us
to patch in updated versions of spirv-llvm-translator that
have bug fixes etc.
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) }; |
