summary refs log tree commit diff
path: root/bin/1sh/tests/parameters/positional5.0
blob: ab918d2fc86119864ff6c19475b06bb385dba96c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# $FreeBSD: releng/12.1/bin/sh/tests/parameters/positional5.0 268576 2014-07-12 21:54:11Z jilles $

i=1
r=0
while [ $i -lt $((0x100000000)) ]; do
	t=
	eval t=\${$i-x}
	case $t in
	x) ;;
	*) echo "Problem with \${$i}" >&2; r=1 ;;
	esac
	i=$((i + 0x10000000))
done
exit $r