xref: /freebsd/bin/sh/tests/execution/fork1.0 (revision b2d2a78ad80ec68d4a17f5aef97d21686cb1e29b)
1
2shname=${SH%% *}
3shname=${shname##*/}
4
5result=$(${SH} -c 'ps -p $$ -o comm=')
6test "$result" = "ps" || exit 1
7
8result=$(${SH} -c 'ps -p $$ -o comm=; :')
9test "$result" = "$shname" || exit 1
10