| author | |
| committer | |
| log | 66e6d0d3142cfc32ea238a84d630732191c1dc1f |
| tree | a3e51d297c1f740320c35f6a64f4c71a8dde2c94 |
| parent | 23b707565676fd650299e9808c1acf2bbb4d46f2 |
2 files changed, 2 insertions(+), 0 deletions(-)
test/behavior/math.zig+1| ... | ... | @@ -1062,6 +1062,7 @@ test "@mulWithOverflow bitsize > 32" { |
| 1062 | 1062 | test "@mulWithOverflow u256" { |
| 1063 | 1063 | if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; |
| 1064 | 1064 | if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest; |
| 1065 | if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest; | |
| 1065 | 1066 | |
| 1066 | 1067 | { |
| 1067 | 1068 | const const_lhs: u256 = 8035709466408580321693645878924206181189; |
test/behavior/struct.zig+1| ... | ... | @@ -2117,6 +2117,7 @@ test "initiate global variable with runtime value" { |
| 2117 | 2117 | |
| 2118 | 2118 | test "struct containing optional pointer to array of @This()" { |
| 2119 | 2119 | if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; |
| 2120 | if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest; | |
| 2120 | 2121 | |
| 2121 | 2122 | const S = struct { |
| 2122 | 2123 | x: ?*const [1]@This(), |