1# $FreeBSD: src/tools/regression/bin/sh/execution/fork1.0,v 1.3 2011/02/19 13:22:18 jilles Exp $
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