mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
sh: Add test for positional parameters with more than one digit.
This also passes on stable/8.
This commit is contained in:
parent
cd50bf427a
commit
47fb896960
1 changed files with 13 additions and 0 deletions
13
tools/regression/bin/sh/parameters/positional1.0
Normal file
13
tools/regression/bin/sh/parameters/positional1.0
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
# $FreeBSD$
|
||||
|
||||
set -- a b c d e f g h i j
|
||||
[ "$1" = a ] || echo "error at line $LINENO"
|
||||
[ "${1}" = a ] || echo "error at line $LINENO"
|
||||
[ "${1-foo}" = a ] || echo "error at line $LINENO"
|
||||
[ "${1+foo}" = foo ] || echo "error at line $LINENO"
|
||||
[ "$1+foo" = a+foo ] || echo "error at line $LINENO"
|
||||
[ "$10" = a0 ] || echo "error at line $LINENO"
|
||||
[ "$100" = a00 ] || echo "error at line $LINENO"
|
||||
[ "${10}" = j ] || echo "error at line $LINENO"
|
||||
[ "${10-foo}" = j ] || echo "error at line $LINENO"
|
||||
[ "${100-foo}" = foo ] || echo "error at line $LINENO"
|
||||
Loading…
Reference in a new issue