aboutsummaryrefslogtreecommitdiffstats
path: root/shell_cmds/sh/tests/execution/fork1.0
blob: 80b013b44e5e0a6003a577ac0aeb7f342812453c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# $FreeBSD: head/bin/sh/tests/execution/fork1.0 218850 2011-02-19 13:22:18Z jilles $

shname=${SH%% *}
shname=${shname##*/}

result=$(${SH} -c 'ps -p $$ -o comm=')
test "$result" = "ps" || exit 1

result=$(${SH} -c 'ps -p $$ -o comm=; :')
test "$result" = "$shname" || exit 1