The failure of the [`"error-in-get-stdout-3"` ](https://github.com/hammerlab/genspio/blob/bdb141fa3faf17c3e06b526b6567284193c9e2fd/src/test/main.ml#L461) test with `ksh` is due to the fact that `kill -s USR1 <pid>` does not kill the shell. ``` 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$ ```