mirror of
https://github.com/ziglang/zig.git
synced 2026-02-13 04:48:20 +00:00
test: skip new failing tests for spirv
This commit is contained in:
parent
23b7075656
commit
66e6d0d314
@ -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;
|
||||
|
||||
@ -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(),
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user