aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/slice.zig
diff options
context:
space:
mode:
authorRobin Voetter <robin@voetter.nl>2023-11-21 19:43:24 +0100
committerRobin Voetter <robin@voetter.nl>2023-11-24 01:11:12 +0100
commit28e1d8285752b320f186090993cdf0ff7a048c85 (patch)
treecb7f61f2e4e9513cf1feef8c3487c4741a687c29 /test/behavior/slice.zig
parent54f4abae2f811c6de1d5c5156961e1bd75405aa6 (diff)
downloadzig-28e1d8285752b320f186090993cdf0ff7a048c85.tar.gz
zig-28e1d8285752b320f186090993cdf0ff7a048c85.zip
spirv: disable failing tests
Diffstat (limited to 'test/behavior/slice.zig')
-rw-r--r--test/behavior/slice.zig1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/behavior/slice.zig b/test/behavior/slice.zig
index 7ceabf05cf..e34e9a501a 100644
--- a/test/behavior/slice.zig
+++ b/test/behavior/slice.zig
@@ -853,6 +853,7 @@ test "slice with dereferenced value" {
test "empty slice ptr is non null" {
if (builtin.zig_backend == .stage2_aarch64 and builtin.os.tag == .macos) return error.SkipZigTest; // TODO
+ if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest; // Test assumes `undefined` is non-zero
{
const empty_slice: []u8 = &[_]u8{};