Commit c689df1215

Jakub Konka <kubkon@jakubkonka.com>
2022-02-08 23:59:10
stage2: disable some tests on x86_64-macos
1 parent f1d2141
Changed files (1)
test
behavior
test/behavior/basic.zig
@@ -194,6 +194,8 @@ test "multiline string comments at multiple places" {
 }
 
 test "string concatenation" {
+    if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest;
+
     try expect(mem.eql(u8, "OK" ++ " IT " ++ "WORKED", "OK IT WORKED"));
 }
 
@@ -395,6 +397,7 @@ fn testTakeAddressOfParameter(f: f32) !void {
 
 test "pointer to void return type" {
     if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO
+    if (builtin.zig_backend == .stage2_x86_64 and builtin.os.tag == .macos) return error.SkipZigTest;
 
     try testPointerToVoidReturnType();
 }