Skip to content

Commit fb7d1c5

Browse files
committed
Skip certain tests on sparc64 due to old glibc version.
1 parent 2c46c2a commit fb7d1c5

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

libc-test/build.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3693,6 +3693,10 @@ fn test_linux(target: &str) {
36933693
// FIXME: the glibc version used by the Sparc64 build jobs
36943694
// which use Debian 10.0 is too old.
36953695
"statx" if sparc64 => true,
3696+
// Needs glibc 2.34 or later.
3697+
"posix_spawn_file_actions_addclosefrom_np" if gnu && sparc64 => true,
3698+
// Needs glibc 2.35 or later.
3699+
"posix_spawn_file_actions_addtcsetpgrp_np" if gnu && sparc64 => true,
36963700

36973701
// FIXME: Deprecated since glibc 2.30. Remove fn once upstream does.
36983702
"sysctl" if gnu => true,

0 commit comments

Comments
 (0)