Skip to content

Commit

Permalink
Add test exceptions
Browse files Browse the repository at this point in the history
  • Loading branch information
cd-work committed Sep 9, 2022
1 parent ce3a66a commit 5f5d0de
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions libc-test/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3152,6 +3152,17 @@ fn test_linux(target: &str) {
| "SYS_epoll_pwait2"
| "SYS_mount_setattr" => true,

// FIXME: these syscalls were added in Linux 5.13 or later
// and are currently not included in the glibc headers.
| "SYS_quotactl_fd"
| "SYS_landlock_create_ruleset"
| "SYS_landlock_add_rule"
| "SYS_landlock_restrict_self"
| "SYS_memfd_secret"
| "SYS_process_mrelease"
| "SYS_futex_waitv"
| "SYS_set_mempolicy_home_node" => true,

// Requires more recent kernel headers:
| "IFLA_PROP_LIST"
| "IFLA_ALT_IFNAME"
Expand Down

0 comments on commit 5f5d0de

Please sign in to comment.