We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The failure of the "error-in-get-stdout-3" test with ksh is due to the fact that kill -s USR1 <pid> does not kill the shell.
"error-in-get-stdout-3"
ksh
kill -s USR1 <pid>
bash$ PS1='ksh\$ ' ksh ksh$ ps PID TTY TIME CMD 1990 pts/21 00:00:00 ksh 1993 pts/21 00:00:00 ps 29935 pts/21 00:00:00 bash ksh$ kill -s USR1 1990 ksh$ kill -9 1990 Killed bash$
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The failure of the
"error-in-get-stdout-3"
test with
ksh
is due to the fact thatkill -s USR1 <pid>
does not kill the shell.The text was updated successfully, but these errors were encountered: