Skip to content

Commit

Permalink
Check whether clone3 syscall exists in pidfd test
Browse files Browse the repository at this point in the history
  • Loading branch information
voidc committed Aug 1, 2021
1 parent 2a4d012 commit 4a832d3
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion src/test/ui/command/command-create-pidfd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,28 @@
// only-linux - pidfds are a linux-specific concept

#![feature(linux_pidfd)]
use std::os::linux::process::{CommandExt, ChildExt};
#![feature(rustc_private)]

extern crate libc;

use std::io::Error;
use std::os::linux::process::{ChildExt, CommandExt};
use std::process::Command;

fn has_clone3() -> bool {
let res = unsafe { libc::syscall(libc::SYS_clone3, 0, 0) };
let err = (res == -1)
.then(|| Error::last_os_error())
.expect("probe syscall should not succeed");
err.raw_os_error() != Some(libc::ENOSYS)
}

fn main() {
// pidfds require the clone3 syscall
if !has_clone3() {
return;
}

// We don't assert the precise value, since the standard library
// might have opened other file descriptors before our code runs.
let _ = Command::new("echo")
Expand Down

0 comments on commit 4a832d3

Please sign in to comment.