Skip to content

Commit 4a832d3

Browse files
committed
Check whether clone3 syscall exists in pidfd test
1 parent 2a4d012 commit 4a832d3

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

src/test/ui/command/command-create-pidfd.rs

+19-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,28 @@
22
// only-linux - pidfds are a linux-specific concept
33

44
#![feature(linux_pidfd)]
5-
use std::os::linux::process::{CommandExt, ChildExt};
5+
#![feature(rustc_private)]
6+
7+
extern crate libc;
8+
9+
use std::io::Error;
10+
use std::os::linux::process::{ChildExt, CommandExt};
611
use std::process::Command;
712

13+
fn has_clone3() -> bool {
14+
let res = unsafe { libc::syscall(libc::SYS_clone3, 0, 0) };
15+
let err = (res == -1)
16+
.then(|| Error::last_os_error())
17+
.expect("probe syscall should not succeed");
18+
err.raw_os_error() != Some(libc::ENOSYS)
19+
}
20+
821
fn main() {
22+
// pidfds require the clone3 syscall
23+
if !has_clone3() {
24+
return;
25+
}
26+
927
// We don't assert the precise value, since the standard library
1028
// might have opened other file descriptors before our code runs.
1129
let _ = Command::new("echo")

0 commit comments

Comments
 (0)