xref: /freebsd/bin/sh/tests/builtins/getopts10.0 (revision d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf)
1*adba77a6SJilles Tjoelker
2*adba77a6SJilles Tjoelkerset -- -x arg
3*adba77a6SJilles Tjoelkeropt=not
4*adba77a6SJilles Tjoelkergetopts x opt
5*adba77a6SJilles Tjoelkerr1=$? OPTIND1=$OPTIND opt1=$opt
6*adba77a6SJilles Tjoelker: $(: $((OPTIND = 1)))
7*adba77a6SJilles Tjoelkergetopts x opt
8*adba77a6SJilles Tjoelkerr2=$? OPTIND2=$OPTIND
9*adba77a6SJilles Tjoelker[ "$r1" = 0 ] && [ "$OPTIND1" = 2 ] && [ "$opt1" = x ] && [ "$r2" != 0 ] &&
10*adba77a6SJilles Tjoelker	[ "$OPTIND2" = 2 ]
11