diff options
| author | Robin Voetter <robin@voetter.nl> | 2023-08-26 11:32:37 +0200 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2023-09-23 12:36:44 -0700 |
| commit | 79f7481575005f9f63b5b3be8dd89b92b11b9c77 (patch) | |
| tree | ab44253bc9180d8947322504c78ddc5c91e01b75 /test/behavior/switch.zig | |
| parent | 865b2e259bf78dbf1d4c1051b5fff68b90bca65f (diff) | |
| download | zig-79f7481575005f9f63b5b3be8dd89b92b11b9c77.tar.gz zig-79f7481575005f9f63b5b3be8dd89b92b11b9c77.zip | |
spirv: disable failing tests
Diffstat (limited to 'test/behavior/switch.zig')
| -rw-r--r-- | test/behavior/switch.zig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/behavior/switch.zig b/test/behavior/switch.zig index 7d90247a30..4e6b7ad761 100644 --- a/test/behavior/switch.zig +++ b/test/behavior/switch.zig @@ -799,6 +799,8 @@ test "inline switch range that includes the maximum value of the switched type" } test "nested break ignores switch conditions and breaks instead" { + if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest; + const S = struct { fn register_to_address(ident: []const u8) !u8 { const reg: u8 = if (std.mem.eql(u8, ident, "zero")) 0x00 else blk: { |
