| author | |
| committer | |
| log | ac165458959d9db9c9fd0362aeb35f8b983cdf6a |
| tree | 4d30a6392c7aabf7c65235c5c2ab7e4a3d8780f9 |
| parent | cbf2ee72e3877400822518245298853cc5ef6ccd |
| signature |
7 files changed, 0 insertions(+), 11 deletions(-)
test/behavior/destructure.zig-2| ... | ... | @@ -23,8 +23,6 @@ test "simple destructure" { |
| 23 | 23 | } |
| 24 | 24 | |
| 25 | 25 | test "destructure with comptime syntax" { |
| 26 | if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest; | |
| 27 | ||
| 28 | 26 | const S = struct { |
| 29 | 27 | fn doTheTest() !void { |
| 30 | 28 | { |
test/behavior/fn.zig-1| ... | ... | @@ -181,7 +181,6 @@ test "function with complex callconv and return type expressions" { |
| 181 | 181 | if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; |
| 182 | 182 | if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; |
| 183 | 183 | if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO |
| 184 | if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest; | |
| 185 | 184 | |
| 186 | 185 | try expect(fComplexCallconvRet(3).x == 9); |
| 187 | 186 | } |
test/behavior/generics.zig-1| ... | ... | @@ -447,7 +447,6 @@ test "return type of generic function is function pointer" { |
| 447 | 447 | |
| 448 | 448 | test "coerced function body has inequal value with its uncoerced body" { |
| 449 | 449 | if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; |
| 450 | if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest; | |
| 451 | 450 | |
| 452 | 451 | const S = struct { |
| 453 | 452 | const A = B(i32, c); |
test/behavior/math.zig-2| ... | ... | @@ -12,7 +12,6 @@ const math = std.math; |
| 12 | 12 | test "assignment operators" { |
| 13 | 13 | if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO |
| 14 | 14 | if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO |
| 15 | if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest; | |
| 16 | 15 | |
| 17 | 16 | var i: u32 = 0; |
| 18 | 17 | i += 5; |
| ... | ... | @@ -188,7 +187,6 @@ test "@ctz vectors" { |
| 188 | 187 | if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO |
| 189 | 188 | if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO |
| 190 | 189 | if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO |
| 191 | if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest; | |
| 192 | 190 | |
| 193 | 191 | if (builtin.zig_backend == .stage2_llvm and builtin.cpu.arch == .aarch64) { |
| 194 | 192 | // This regressed with LLVM 14: |
test/behavior/switch.zig-2| ... | ... | @@ -850,8 +850,6 @@ test "inline switch range that includes the maximum value of the switched type" |
| 850 | 850 | } |
| 851 | 851 | |
| 852 | 852 | test "nested break ignores switch conditions and breaks instead" { |
| 853 | if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest; | |
| 854 | ||
| 855 | 853 | const S = struct { |
| 856 | 854 | fn register_to_address(ident: []const u8) !u8 { |
| 857 | 855 | const reg: u8 = if (std.mem.eql(u8, ident, "zero")) 0x00 else blk: { |
test/behavior/union.zig-1| ... | ... | @@ -1750,7 +1750,6 @@ test "reinterpret extern union" { |
| 1750 | 1750 | // https://github.com/ziglang/zig/issues/19389 |
| 1751 | 1751 | return error.SkipZigTest; |
| 1752 | 1752 | } |
| 1753 | if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest; | |
| 1754 | 1753 | |
| 1755 | 1754 | const U = extern union { |
| 1756 | 1755 | foo: u8, |
test/behavior/vector.zig-2| ... | ... | @@ -76,7 +76,6 @@ test "vector int operators" { |
| 76 | 76 | if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO |
| 77 | 77 | if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO |
| 78 | 78 | if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO |
| 79 | if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest; | |
| 80 | 79 | |
| 81 | 80 | const S = struct { |
| 82 | 81 | fn doTheTest() !void { |
| ... | ... | @@ -1037,7 +1036,6 @@ test "multiplication-assignment operator with an array operand" { |
| 1037 | 1036 | if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO |
| 1038 | 1037 | if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO |
| 1039 | 1038 | if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO |
| 1040 | if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest; | |
| 1041 | 1039 | |
| 1042 | 1040 | const S = struct { |
| 1043 | 1041 | fn doTheTest() !void { |