Skip to content

Commit 2ff345c

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 86ce777 commit 2ff345c

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

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

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

0 commit comments

Comments
 (0)