2025-02-17 18:38:33 +00:00
|
|
|
$CLI selftest parent
|
|
|
|
|
2025-02-18 12:14:29 +00:00
|
|
|
echo "[script] waiting for child process to end..."
|
|
|
|
echo -n "[script]"
|
2025-02-17 18:38:33 +00:00
|
|
|
wait_pid $(cat ./child.pid)
|
|
|
|
|
2025-02-18 12:14:29 +00:00
|
|
|
echo "[script] child process should not have written any output."
|
2025-02-17 18:38:33 +00:00
|
|
|
|
|
|
|
rm ./child.pid
|
2025-02-18 13:49:24 +00:00
|
|
|
|
|
|
|
# README:
|
|
|
|
# THis test validates that stdout / stderr from the child process are not leaked
|
|
|
|
# to the parent process's output.
|