aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/align.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/align.zig
parent54f4abae2f811c6de1d5c5156961e1bd75405aa6 (diff)
downloadzig-28e1d8285752b320f186090993cdf0ff7a048c85.tar.gz
zig-28e1d8285752b320f186090993cdf0ff7a048c85.zip
spirv: disable failing tests
Diffstat (limited to 'test/behavior/align.zig')
-rw-r--r--test/behavior/align.zig1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/behavior/align.zig b/test/behavior/align.zig
index 6bc78d3b6c..ff69ce6971 100644
--- a/test/behavior/align.zig
+++ b/test/behavior/align.zig
@@ -27,6 +27,7 @@ test "large alignment of local constant" {
test "slicing array of length 1 can not assume runtime index is always zero" {
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO
+ if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest;
var runtime_index: usize = 1;
_ = &runtime_index;