1 # $FreeBSD: head/bin/sh/tests/parameters/positional8.0 291025 2015-11-18 21:09:03Z jilles $
14 if [ "x$result" = "x$expected" ]; then
18 echo "For $code, expected $expected actual $result"
22 testcase 'shift $#; set -- ""$*' '1|'
23 testcase 'shift $#; set -- $*""' '1|'
24 testcase 'shift $#; set -- ""$@' '1|'
25 testcase 'shift $#; set -- $@""' '1|'
26 testcase 'shift $#; set -- """$*"' '1|'
27 testcase 'shift $#; set -- "$*"""' '1|'
28 testcase 'shift $#; set -- """$@"' '1|'
29 testcase 'shift $#; set -- "$@"""' '1|'