aboutsummaryrefslogtreecommitdiff
path: root/test/behavior
diff options
context:
space:
mode:
authorRobin Voetter <robin@voetter.nl>2024-01-15 23:06:54 +0100
committerRobin Voetter <robin@voetter.nl>2024-02-04 19:09:00 +0100
commitcb9e20da00a2c33706e2c7bf2008887c6c72a896 (patch)
treede3eb17f2d283a1a918089b437854b3cae65133c /test/behavior
parent747f4ae3f5efc89df0b1b76787eb90eab90fc362 (diff)
downloadzig-cb9e20da00a2c33706e2c7bf2008887c6c72a896.tar.gz
zig-cb9e20da00a2c33706e2c7bf2008887c6c72a896.zip
spirv: element-wise operation helper
Diffstat (limited to 'test/behavior')
-rw-r--r--test/behavior/math.zig1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/behavior/math.zig b/test/behavior/math.zig
index e96299abaa..93c467eb5d 100644
--- a/test/behavior/math.zig
+++ b/test/behavior/math.zig
@@ -12,6 +12,7 @@ const math = std.math;
test "assignment operators" {
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO
+ if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest;
var i: u32 = 0;
i += 5;