test: skip new failing tests for spirv

This commit is contained in:
Ali Chraghi 2024-02-15 18:44:24 +03:30
parent 23b7075656
commit 66e6d0d314
2 changed files with 2 additions and 0 deletions

View File

@ -1062,6 +1062,7 @@ test "@mulWithOverflow bitsize > 32" {
test "@mulWithOverflow u256" {
if (builtin.zig_backend == .stage2_c) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest;
{
const const_lhs: u256 = 8035709466408580321693645878924206181189;

View File

@ -2117,6 +2117,7 @@ test "initiate global variable with runtime value" {
test "struct containing optional pointer to array of @This()" {
if (builtin.zig_backend == .stage2_c) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest;
const S = struct {
x: ?*const [1]@This(),