Skip to content

Commit 3e1bc4b

Browse files
committed
Auto merge of #3077 - JohnTitor:ignore-abi-changed-items-macos, r=JohnTitor
Ignore some ABI changed fns on macOS Signed-off-by: Yuki Okushi <[email protected]>
2 parents 8958df1 + 9122de0 commit 3e1bc4b

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

libc-test/build.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -300,6 +300,9 @@ fn test_apple(target: &str) {
300300
// FIXME: actually a union
301301
"sigval" => true,
302302

303+
// FIXME: The size is changed in recent macOSes.
304+
"malloc_zone_t" => true,
305+
303306
_ => false,
304307
}
305308
});
@@ -341,6 +344,9 @@ fn test_apple(target: &str) {
341344
// FIXME: remove once the target in CI is updated
342345
"pthread_jit_write_freeze_callbacks_np" => true,
343346

347+
// FIXME: ABI has been changed on recent macOSes.
348+
"os_unfair_lock_assert_owner" | "os_unfair_lock_assert_not_owner" => true,
349+
344350
_ => false,
345351
}
346352
});

0 commit comments

Comments
 (0)