Skip to content

Commit dec14b0

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.
1 parent f9f21cf commit dec14b0

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
@@ -3986,11 +3986,9 @@ fn test_linux(target: &str) {
39863986
// which is absent in musl, has to be defined.
39873987
"__exit_status" if musl => true,
39883988

3989-
// clone_args might differ b/w libc versions
3990-
"clone_args" => true,
3991-
3992-
// Might differ between kernel versions
3993-
"open_how" => true,
3989+
// FIXME(ppc): tests fail due to a field type mismatch (`long long unsigned` vs
3990+
// `long unsigned`).
3991+
"clone_args" if ppc64 => true,
39943992

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

0 commit comments

Comments
 (0)