summaryrefslogtreecommitdiff
path: root/shell/msh_test/msh-execution/many_continues.tests (plain)
blob: 86c729abc330052e06d719d12b0381a356288de1
1if test $# = 0; then
2 # Child will kill us in 1 second
3 "$THIS_SH" "$0" $$ &
4
5 # Loop many, many times
6 trap 'echo OK; exit 0' 15
7 while true; do
8 continue
9 done
10 echo BAD
11 exit 1
12fi
13
14sleep 1
15kill $1
16