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.
This commit is contained in:
Robin Voetter
2024-05-31 00:09:28 +02:00
parent 44443b833b
commit b9d738a5cf
16 changed files with 29 additions and 0 deletions

View File

@@ -768,6 +768,7 @@ test "slicing array of zero-sized values" {
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_riscv64) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest;
var arr: [32]u0 = undefined;
for (arr[0..]) |*zero|