Skip to content

Commit 5f5d0de

Browse files
committed
Add test exceptions
1 parent ce3a66a commit 5f5d0de

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

libc-test/build.rs

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3152,6 +3152,17 @@ fn test_linux(target: &str) {
31523152
| "SYS_epoll_pwait2"
31533153
| "SYS_mount_setattr" => true,
31543154

3155+
// FIXME: these syscalls were added in Linux 5.13 or later
3156+
// and are currently not included in the glibc headers.
3157+
| "SYS_quotactl_fd"
3158+
| "SYS_landlock_create_ruleset"
3159+
| "SYS_landlock_add_rule"
3160+
| "SYS_landlock_restrict_self"
3161+
| "SYS_memfd_secret"
3162+
| "SYS_process_mrelease"
3163+
| "SYS_futex_waitv"
3164+
| "SYS_set_mempolicy_home_node" => true,
3165+
31553166
// Requires more recent kernel headers:
31563167
| "IFLA_PROP_LIST"
31573168
| "IFLA_ALT_IFNAME"

0 commit comments

Comments
 (0)