Skip to content

Commit 33375e7

Browse files
committed
test: linux: Unskip clone_args and open_how
The concerns about changing across versions was resolved a long time ago. However, there is still a mismatch on PowerPC64, so a specific skip is added for now. (backport <#4760>) (cherry picked from commit dec14b0)
1 parent 60490f6 commit 33375e7

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

libc-test/build.rs

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4135,11 +4135,9 @@ fn test_linux(target: &str) {
41354135
// which is absent in musl, has to be defined.
41364136
"__exit_status" if musl => true,
41374137

4138-
// clone_args might differ b/w libc versions
4139-
"clone_args" => true,
4140-
4141-
// Might differ between kernel versions
4142-
"open_how" => true,
4138+
// FIXME(ppc): tests fail due to a field type mismatch (`long long unsigned` vs
4139+
// `long unsigned`).
4140+
"clone_args" if ppc64 => true,
41434141

41444142
// Linux >= 6.13 (pidfd_info.exit_code: Linux >= 6.15)
41454143
// Might differ between kernel versions

0 commit comments

Comments
 (0)