xref: /freebsd/bin/sh/tests/builtins/getopts4.0 (revision 7d8f797b725e3efc0a4256554654780df83c456c)
1# $FreeBSD$
2
3set -- -x
4opt=not
5getopts x opt
6r1=$? OPTIND1=$OPTIND opt1=$opt
7getopts x opt
8r2=$? OPTIND2=$OPTIND
9[ "$r1" = 0 ] && [ "$OPTIND1" = 2 ] && [ "$opt1" = x ] && [ "$r2" != 0 ] &&
10	[ "$OPTIND2" = 2 ]
11