Add some tests for ${var?} and set -u.

This commit is contained in:
Jilles Tjoelker 2009-10-24 20:57:11 +00:00
parent 59085a35e8
commit 941538c0f4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=198453
2 changed files with 51 additions and 0 deletions

View File

@ -0,0 +1,22 @@
# $FreeBSD$
x=a\ b
[ "$x" = "${x?}" ] || exit 1
set -- ${x?}
{ [ "$#" = 2 ] && [ "$1" = a ] && [ "$2" = b ]; } || exit 1
unset x
(echo ${x?abcdefg}) 2>&1 | grep -q abcdefg || exit 1
sh -c 'unset foo; echo ${foo?}' 2>/dev/null && exit 1
sh -c 'foo=; echo ${foo:?}' 2>/dev/null && exit 1
sh -c 'foo=; echo ${foo?}' >/dev/null || exit 1
sh -c 'foo=1; echo ${foo:?}' >/dev/null || exit 1
sh -c 'echo ${!?}' 2>/dev/null && exit 1
sh -c ':& echo ${!?}' >/dev/null || exit 1
sh -c 'echo ${#?}' >/dev/null || exit 1
sh -c 'echo ${*?}' 2>/dev/null && exit 1
sh -c 'echo ${*?}' sh x >/dev/null || exit 1
sh -c 'echo ${1?}' 2>/dev/null && exit 1
sh -c 'echo ${1?}' sh x >/dev/null || exit 1
sh -c 'echo ${2?}' sh x 2>/dev/null && exit 1
sh -c 'echo ${2?}' sh x y >/dev/null || exit 1
exit 0

View File

@ -0,0 +1,29 @@
# $FreeBSD$
sh -uc 'unset foo; echo $foo' 2>/dev/null && exit 1
sh -uc 'foo=; echo $foo' >/dev/null || exit 1
sh -uc 'foo=1; echo $foo' >/dev/null || exit 1
# -/+/= are unaffected by set -u
sh -uc 'unset foo; echo ${foo-}' >/dev/null || exit 1
sh -uc 'unset foo; echo ${foo+}' >/dev/null || exit 1
sh -uc 'unset foo; echo ${foo=}' >/dev/null || exit 1
# length/trimming are affected
sh -uc 'unset foo; echo ${#foo}' 2>/dev/null && exit 1
sh -uc 'foo=; echo ${#foo}' >/dev/null || exit 1
sh -uc 'unset foo; echo ${foo#?}' 2>/dev/null && exit 1
sh -uc 'foo=1; echo ${foo#?}' >/dev/null || exit 1
sh -uc 'unset foo; echo ${foo##?}' 2>/dev/null && exit 1
sh -uc 'foo=1; echo ${foo##?}' >/dev/null || exit 1
sh -uc 'unset foo; echo ${foo%?}' 2>/dev/null && exit 1
sh -uc 'foo=1; echo ${foo%?}' >/dev/null || exit 1
sh -uc 'unset foo; echo ${foo%%?}' 2>/dev/null && exit 1
sh -uc 'foo=1; echo ${foo%%?}' >/dev/null || exit 1
sh -uc 'echo $!' 2>/dev/null && exit 1
sh -uc ':& echo $!' >/dev/null || exit 1
sh -uc 'echo $#' >/dev/null || exit 1
sh -uc 'echo $1' 2>/dev/null && exit 1
sh -uc 'echo $1' sh x >/dev/null || exit 1
sh -uc 'echo $2' sh x 2>/dev/null && exit 1
sh -uc 'echo $2' sh x y >/dev/null || exit 1
exit 0