about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDominik Stolz <d.stolz@tum.de>2021-07-10 12:58:30 +0200
committerDominik Stolz <d.stolz@tum.de>2021-08-01 09:45:00 +0200
commit4a832d32f232a68acdabfd29e526d2a4b6366a1c (patch)
tree9944d392a2b9a7b966666f45e860377bb3a6132e
parent2a4d012103999528ea7712bd3bb93a5ed7a6824e (diff)
downloadrust-4a832d32f232a68acdabfd29e526d2a4b6366a1c.tar.gz
rust-4a832d32f232a68acdabfd29e526d2a4b6366a1c.zip
Check whether clone3 syscall exists in pidfd test
-rw-r--r--src/test/ui/command/command-create-pidfd.rs20
1 files changed, 19 insertions, 1 deletions
diff --git a/src/test/ui/command/command-create-pidfd.rs b/src/test/ui/command/command-create-pidfd.rs
index db728be09df..93321ac536a 100644
--- a/src/test/ui/command/command-create-pidfd.rs
+++ b/src/test/ui/command/command-create-pidfd.rs
@@ -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")