summaryrefslogtreecommitdiffstats
path: root/src/test/ui/wait-forked-but-failed-child.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
commit698f8c2f01ea549d77d7dc3338a12e04c11057b9 (patch)
tree173a775858bd501c378080a10dca74132f05bc50 /src/test/ui/wait-forked-but-failed-child.rs
parentInitial commit. (diff)
downloadrustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.tar.xz
rustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.zip
Adding upstream version 1.64.0+dfsg1.upstream/1.64.0+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/wait-forked-but-failed-child.rs')
-rw-r--r--src/test/ui/wait-forked-but-failed-child.rs62
1 files changed, 62 insertions, 0 deletions
diff --git a/src/test/ui/wait-forked-but-failed-child.rs b/src/test/ui/wait-forked-but-failed-child.rs
new file mode 100644
index 000000000..0eb0fe071
--- /dev/null
+++ b/src/test/ui/wait-forked-but-failed-child.rs
@@ -0,0 +1,62 @@
+// run-pass
+// ignore-emscripten no processes
+// ignore-sgx no processes
+// ignore-vxworks no 'ps'
+
+#![feature(rustc_private)]
+
+extern crate libc;
+
+use std::process::Command;
+
+// The output from "ps -A -o pid,ppid,args" should look like this:
+// PID PPID COMMAND
+// 1 0 /sbin/init
+// 2 0 [kthreadd]
+// ...
+// 6076 9064 /bin/zsh
+// ...
+// 7164 6076 ./spawn-failure
+// 7165 7164 [spawn-failure] <defunct>
+// 7166 7164 [spawn-failure] <defunct>
+// ...
+// 7197 7164 [spawn-failure] <defunct>
+// 7198 7164 ps -A -o pid,ppid,command
+// ...
+
+#[cfg(unix)]
+fn find_zombies() {
+ let my_pid = unsafe { libc::getpid() };
+
+ // https://pubs.opengroup.org/onlinepubs/9699919799/utilities/ps.html
+ let ps_cmd_output = Command::new("ps").args(&["-A", "-o", "pid,ppid,args"]).output().unwrap();
+ let ps_output = String::from_utf8_lossy(&ps_cmd_output.stdout);
+
+ for (line_no, line) in ps_output.split('\n').enumerate() {
+ if 0 < line_no && 0 < line.len() &&
+ my_pid == line.split(' ').filter(|w| 0 < w.len()).nth(1)
+ .expect("1st column should be PPID")
+ .parse().ok()
+ .expect("PPID string into integer") &&
+ line.contains("defunct") {
+ panic!("Zombie child {}", line);
+ }
+ }
+}
+
+#[cfg(windows)]
+fn find_zombies() { }
+
+fn main() {
+ let too_long = format!("/NoSuchCommand{:0300}", 0u8);
+
+ let _failures = (0..100).map(|_| {
+ let mut cmd = Command::new(&too_long);
+ let failed = cmd.spawn();
+ assert!(failed.is_err(), "Make sure the command fails to spawn(): {:?}", cmd);
+ failed
+ }).collect::<Vec<_>>();
+
+ find_zombies();
+ // then _failures goes out of scope
+}