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