xref: /dflybsd-src/tools/regression/bin/sh/execution/fork1.0 (revision 3e3895bf4584c1562faf4533cbd97026ee6a8dcf)
1# $FreeBSD: head/bin/sh/tests/execution/fork1.0 218850 2011-02-19 13:22:18Z jilles $
2
3shname=${SH%% *}
4shname=${shname##*/}
5
6result=$(${SH} -c 'ps -p $$ -o comm=')
7test "$result" = "ps" || exit 1
8
9result=$(${SH} -c 'ps -p $$ -o comm=; :')
10test "$result" = "$shname" || exit 1
11