Skip to content

Commit f34b049

Browse files
committed
update FIXME labels
1 parent f4f451c commit f34b049

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

libc-test/build.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ fn test_apple(target: &str) {
350350
// FIXME(macos): Requires the macOS 14.4 SDK.
351351
"os_sync_wake_by_address_flags_t" | "os_sync_wait_on_address_flags_t" => true,
352352

353-
// FIXME(ctest): "'__uint128' undeclared" in C
353+
// FIXME(macos): "'__uint128' undeclared" in C
354354
"__uint128" => true,
355355

356356
_ => false,
@@ -459,7 +459,7 @@ fn test_apple(target: &str) {
459459
s if s.ends_with("_nsec") && struct_.starts_with("stat") => {
460460
s.replace("e_nsec", "espec.tv_nsec")
461461
}
462-
// FIXME(ctest): sigaction actually contains a union with two variants:
462+
// FIXME(macos): sigaction actually contains a union with two variants:
463463
// a sa_sigaction with type: (*)(int, struct __siginfo *, void *)
464464
// a sa_handler with type sig_t
465465
"sa_sigaction" if struct_ == "sigaction" => "sa_handler".to_string(),
@@ -468,7 +468,7 @@ fn test_apple(target: &str) {
468468
});
469469

470470
cfg.skip_roundtrip(move |s| match s {
471-
// FIXME(ctest): this type has the wrong ABI
471+
// FIXME(macos): this type has the wrong ABI
472472
"max_align_t" if i686 => true,
473473
// Can't return an array from a C function.
474474
"uuid_t" | "vol_capabilities_set_t" => true,

0 commit comments

Comments
 (0)