| ... | ... | @@ -194,6 +194,8 @@ test "multiline string comments at multiple places" { |
| 194 | 194 | } |
| 195 | 195 | |
| 196 | 196 | test "string concatenation" { |
| 197 | if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; |
| 198 | |
| 197 | 199 | try expect(mem.eql(u8, "OK" ++ " IT " ++ "WORKED", "OK IT WORKED")); |
| 198 | 200 | } |
| 199 | 201 | |
| ... | ... | @@ -395,6 +397,7 @@ fn testTakeAddressOfParameter(f: f32) !void { |
| 395 | 397 | |
| 396 | 398 | test "pointer to void return type" { |
| 397 | 399 | if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO |
| 400 | if (builtin.zig_backend == .stage2_x86_64 and builtin.os.tag == .macos) return error.SkipZigTest; |
| 398 | 401 | |
| 399 | 402 | try testPointerToVoidReturnType(); |
| 400 | 403 | } |