busybox/shell/ash_test/ash-redir/redir_EINTR2.tests
Denys Vlasenko d18c9eadf0 shells: testcase: add another test for EINTR on fifo open
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2025-08-11 14:10:17 +02:00

14 lines
388 B
Text
Executable file

rm -f test.fifo
mkfifo test.fifo
(sleep 1; kill -chld $$) &
(sleep 2; echo Hello >test.fifo) &
# We get open("test.fifo") interrupted by SIGCHLD from the first subshell.
# The shell MUST retry the open (no printing of error messages).
# Then, the second subshell opens fifo for writing and open unblocks and succeeds.
read HELLO <test.fifo
echo "$HELLO"
echo "Done:$?"
rm -f test.fifo