aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/math.zig
diff options
context:
space:
mode:
authorRobin Voetter <robin@voetter.nl>2023-08-26 11:32:37 +0200
committerAndrew Kelley <andrew@ziglang.org>2023-09-23 12:36:44 -0700
commit79f7481575005f9f63b5b3be8dd89b92b11b9c77 (patch)
treeab44253bc9180d8947322504c78ddc5c91e01b75 /test/behavior/math.zig
parent865b2e259bf78dbf1d4c1051b5fff68b90bca65f (diff)
downloadzig-79f7481575005f9f63b5b3be8dd89b92b11b9c77.tar.gz
zig-79f7481575005f9f63b5b3be8dd89b92b11b9c77.zip
spirv: disable failing tests
Diffstat (limited to 'test/behavior/math.zig')
-rw-r--r--test/behavior/math.zig2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/behavior/math.zig b/test/behavior/math.zig
index a7aea59e9a..64ee1c4cbf 100644
--- a/test/behavior/math.zig
+++ b/test/behavior/math.zig
@@ -1289,6 +1289,8 @@ fn testShrExact(x: u8) !void {
}
test "shift left/right on u0 operand" {
+ if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest;
+
const S = struct {
fn doTheTest() !void {
var x: u0 = 0;