Home | History | Annotate | Line # | Download | only in sh
t_expand.sh revision 1.12
      1  1.12       kre # $NetBSD: t_expand.sh,v 1.12 2017/05/14 11:28:49 kre Exp $
      2   1.1    jruoho #
      3   1.1    jruoho # Copyright (c) 2007, 2009 The NetBSD Foundation, Inc.
      4   1.1    jruoho # All rights reserved.
      5   1.1    jruoho #
      6   1.1    jruoho # Redistribution and use in source and binary forms, with or without
      7   1.1    jruoho # modification, are permitted provided that the following conditions
      8   1.1    jruoho # are met:
      9   1.1    jruoho # 1. Redistributions of source code must retain the above copyright
     10   1.1    jruoho #    notice, this list of conditions and the following disclaimer.
     11   1.1    jruoho # 2. Redistributions in binary form must reproduce the above copyright
     12   1.1    jruoho #    notice, this list of conditions and the following disclaimer in the
     13   1.1    jruoho #    documentation and/or other materials provided with the distribution.
     14   1.1    jruoho #
     15   1.1    jruoho # THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     16   1.1    jruoho # ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     17   1.1    jruoho # TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     18   1.1    jruoho # PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     19   1.1    jruoho # BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     20   1.1    jruoho # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     21   1.1    jruoho # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     22   1.1    jruoho # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     23   1.1    jruoho # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     24   1.1    jruoho # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     25   1.1    jruoho # POSSIBILITY OF SUCH DAMAGE.
     26   1.1    jruoho #
     27   1.6  christos # the implementation of "sh" to test
     28   1.6  christos : ${TEST_SH:="/bin/sh"}
     29   1.1    jruoho 
     30   1.1    jruoho #
     31   1.1    jruoho # This file tests the functions in expand.c.
     32   1.1    jruoho #
     33   1.1    jruoho 
     34   1.1    jruoho delim_argv() {
     35   1.1    jruoho 	str=
     36   1.1    jruoho 	while [ $# -gt 0 ]; do
     37   1.1    jruoho 		if [ -z "${str}" ]; then
     38   1.1    jruoho 			str=">$1<"
     39   1.1    jruoho 		else
     40   1.1    jruoho 			str="${str} >$1<"
     41   1.1    jruoho 		fi
     42   1.2       ast 		shift
     43   1.1    jruoho 	done
     44   1.1    jruoho 	echo ${str}
     45   1.1    jruoho }
     46   1.1    jruoho 
     47   1.1    jruoho atf_test_case dollar_at
     48   1.1    jruoho dollar_at_head() {
     49   1.1    jruoho 	atf_set "descr" "Somewhere between 2.0.2 and 3.0 the expansion" \
     50   1.1    jruoho 	                "of the \$@ variable had been broken.  Check for" \
     51   1.1    jruoho 			"this behavior."
     52   1.1    jruoho }
     53   1.1    jruoho dollar_at_body() {
     54   1.1    jruoho 	# This one should work everywhere.
     55   1.6  christos 	atf_check -s exit:0 -o inline:' EOL\n' -e empty \
     56   1.6  christos 		${TEST_SH} -c 'echo "" "" | '" sed 's,\$,EOL,'"
     57   1.1    jruoho 
     58   1.1    jruoho 	# This code triggered the bug.
     59   1.6  christos 	atf_check -s exit:0 -o inline:' EOL\n' -e empty \
     60   1.6  christos 		${TEST_SH} -c 'set -- "" ""; echo "$@" | '" sed 's,\$,EOL,'"
     61   1.6  christos 
     62   1.6  christos 	atf_check -s exit:0 -o inline:'0\n' -e empty ${TEST_SH} -c \
     63   1.6  christos 		'set -- -; shift; n_arg() { echo $#; }; n_arg "$@"'
     64   1.1    jruoho }
     65   1.1    jruoho 
     66   1.1    jruoho atf_test_case dollar_at_with_text
     67   1.1    jruoho dollar_at_with_text_head() {
     68   1.1    jruoho 	atf_set "descr" "Test \$@ expansion when it is surrounded by text" \
     69   1.1    jruoho 	                "within the quotes.  PR bin/33956."
     70   1.1    jruoho }
     71   1.1    jruoho dollar_at_with_text_body() {
     72   1.6  christos 
     73   1.6  christos 	cat <<'EOF' > h-f1
     74   1.6  christos 
     75   1.6  christos delim_argv() {
     76   1.6  christos 	str=
     77   1.6  christos 	while [ $# -gt 0 ]; do
     78   1.6  christos 		if [ -z "${str}" ]; then
     79   1.6  christos 			str=">$1<"
     80   1.6  christos 		else
     81   1.6  christos 			str="${str} >$1<"
     82   1.6  christos 		fi
     83   1.6  christos 		shift
     84   1.6  christos 	done
     85   1.6  christos 	echo "${str}"
     86   1.6  christos }
     87   1.6  christos 
     88   1.6  christos EOF
     89   1.6  christos 	cat <<'EOF' > h-f2
     90   1.6  christos 
     91   1.6  christos delim_argv() {
     92   1.6  christos 	str=
     93   1.6  christos 	while [ $# -gt 0 ]; do
     94   1.6  christos 
     95   1.6  christos 		str="${str}${str:+ }>$1<"
     96   1.6  christos 		shift
     97   1.6  christos 
     98   1.6  christos 	done
     99   1.6  christos 	echo "${str}"
    100   1.6  christos }
    101   1.6  christos 
    102   1.6  christos EOF
    103   1.6  christos 
    104   1.6  christos 	chmod +x h-f1 h-f2
    105   1.6  christos 
    106   1.6  christos 	for f in 1 2
    107   1.6  christos 	do
    108   1.6  christos 		atf_check -s exit:0 -o inline:'\n' -e empty ${TEST_SH} -c \
    109   1.6  christos 			". ./h-f${f}; "'set -- ; delim_argv "$@"'
    110   1.6  christos 		atf_check -s exit:0 -o inline:'>foobar<\n' -e empty \
    111   1.6  christos 			${TEST_SH} -c \
    112   1.6  christos 			". ./h-f${f}; "'set -- ; delim_argv "foo$@bar"'
    113   1.6  christos 		atf_check -s exit:0 -o inline:'>foo  bar<\n' -e empty \
    114   1.6  christos 			${TEST_SH} -c \
    115   1.6  christos 			". ./h-f${f}; "'set -- ; delim_argv "foo $@ bar"'
    116   1.6  christos 
    117   1.6  christos 		atf_check -s exit:0 -o inline:'>a< >b< >c<\n' -e empty \
    118   1.6  christos 			${TEST_SH} -c \
    119   1.6  christos 			". ./h-f${f}; "'set -- a b c; delim_argv "$@"'
    120   1.6  christos 		atf_check -s exit:0 -o inline:'>fooa< >b< >cbar<\n' -e empty \
    121   1.6  christos 			${TEST_SH} -c \
    122   1.6  christos 			". ./h-f${f}; "'set -- a b c; delim_argv "foo$@bar"'
    123   1.6  christos 		atf_check -s exit:0 -o inline:'>foo a< >b< >c bar<\n' -e empty \
    124   1.6  christos 			${TEST_SH} -c \
    125   1.6  christos 			". ./h-f${f}; "'set -- a b c; delim_argv "foo $@ bar"'
    126   1.6  christos 	done
    127   1.1    jruoho }
    128   1.1    jruoho 
    129   1.1    jruoho atf_test_case strip
    130   1.1    jruoho strip_head() {
    131   1.1    jruoho 	atf_set "descr" "Checks that the %% operator works and strips" \
    132   1.1    jruoho 	                "the contents of a variable from the given point" \
    133   1.6  christos 			"to the end"
    134   1.1    jruoho }
    135   1.1    jruoho strip_body() {
    136   1.1    jruoho 	line='#define bindir "/usr/bin" /* comment */'
    137   1.1    jruoho 	stripped='#define bindir "/usr/bin" '
    138   1.6  christos 
    139   1.6  christos 	# atf_expect_fail "PR bin/43469" -- now fixed
    140   1.6  christos 	for exp in 				\
    141   1.6  christos 		'${line%%/\**}'			\
    142   1.6  christos 		'${line%%"/*"*}'		\
    143   1.6  christos 		'${line%%'"'"'/*'"'"'*}'	\
    144   1.6  christos 		'"${line%%/\**}"'		\
    145   1.6  christos 		'"${line%%"/*"*}"'		\
    146   1.6  christos 		'"${line%%'"'"'/*'"'"'*}"'	\
    147   1.6  christos 		'${line%/\**}'			\
    148   1.6  christos 		'${line%"/*"*}'			\
    149   1.6  christos 		'${line%'"'"'/*'"'"'*}'		\
    150   1.6  christos 		'"${line%/\**}"'		\
    151   1.6  christos 		'"${line%"/*"*}"'		\
    152   1.6  christos 		'"${line%'"'"'/*'"'"'*}"'
    153   1.6  christos 	do
    154   1.6  christos 		atf_check -o inline:":$stripped:\n" -e empty ${TEST_SH} -c \
    155   1.6  christos 			"line='${line}'; echo :${exp}:"
    156   1.6  christos 	done
    157   1.1    jruoho }
    158   1.1    jruoho 
    159   1.1    jruoho atf_test_case varpattern_backslashes
    160   1.1    jruoho varpattern_backslashes_head() {
    161   1.1    jruoho 	atf_set "descr" "Tests that protecting wildcards with backslashes" \
    162   1.1    jruoho 	                "works in variable patterns."
    163   1.1    jruoho }
    164   1.1    jruoho varpattern_backslashes_body() {
    165   1.1    jruoho 	line='/foo/bar/*/baz'
    166   1.1    jruoho 	stripped='/foo/bar/'
    167   1.6  christos 	atf_check -o inline:'/foo/bar/\n' -e empty ${TEST_SH} -c \
    168   1.6  christos 		'line="/foo/bar/*/baz"; echo ${line%%\**}'
    169   1.1    jruoho }
    170   1.1    jruoho 
    171   1.1    jruoho atf_test_case arithmetic
    172   1.1    jruoho arithmetic_head() {
    173   1.1    jruoho 	atf_set "descr" "POSIX requires shell arithmetic to use signed" \
    174   1.1    jruoho 	                "long or a wider type.  We use intmax_t, so at" \
    175   1.1    jruoho 			"least 64 bits should be available.  Make sure" \
    176   1.1    jruoho 			"this is true."
    177   1.1    jruoho }
    178   1.1    jruoho arithmetic_body() {
    179   1.6  christos 
    180   1.6  christos 	atf_check -o inline:'3' -e empty ${TEST_SH} -c \
    181   1.6  christos 		'printf %s $((1 + 2))'
    182   1.6  christos 	atf_check -o inline:'2147483647' -e empty ${TEST_SH} -c \
    183   1.6  christos 		'printf %s $((0x7fffffff))'
    184   1.6  christos 	atf_check -o inline:'9223372036854775807' -e empty ${TEST_SH} -c \
    185   1.6  christos 		'printf %s $(((1 << 63) - 1))'
    186   1.1    jruoho }
    187   1.1    jruoho 
    188   1.2       ast atf_test_case iteration_on_null_parameter
    189   1.2       ast iteration_on_null_parameter_head() {
    190   1.2       ast 	atf_set "descr" "Check iteration of \$@ in for loop when set to null;" \
    191   1.2       ast 	                "the error \"sh: @: parameter not set\" is incorrect." \
    192   1.2       ast 	                "PR bin/48202."
    193   1.2       ast }
    194   1.2       ast iteration_on_null_parameter_body() {
    195   1.6  christos 	atf_check -o empty -e empty ${TEST_SH} -c \
    196   1.6  christos 		'N=; set -- ${N};   for X; do echo "[$X]"; done'
    197   1.6  christos }
    198   1.6  christos 
    199   1.6  christos atf_test_case iteration_on_quoted_null_parameter
    200   1.6  christos iteration_on_quoted_null_parameter_head() {
    201   1.6  christos 	atf_set "descr" \
    202   1.6  christos 		'Check iteration of "$@" in for loop when set to null;'
    203   1.6  christos }
    204   1.6  christos iteration_on_quoted_null_parameter_body() {
    205   1.6  christos 	atf_check -o inline:'[]\n' -e empty ${TEST_SH} -c \
    206   1.6  christos 		'N=; set -- "${N}"; for X; do echo "[$X]"; done'
    207   1.6  christos }
    208   1.6  christos 
    209   1.6  christos atf_test_case iteration_on_null_or_null_parameter
    210   1.6  christos iteration_on_null_or_null_parameter_head() {
    211   1.6  christos 	atf_set "descr" \
    212   1.6  christos 		'Check expansion of null parameter as default for another null'
    213   1.6  christos }
    214   1.6  christos iteration_on_null_or_null_parameter_body() {
    215   1.6  christos 	atf_check -o empty -e empty ${TEST_SH} -c \
    216   1.6  christos 		'N=; E=; set -- ${N:-${E}}; for X; do echo "[$X]"; done'
    217   1.6  christos }
    218   1.6  christos 
    219   1.6  christos atf_test_case iteration_on_null_or_missing_parameter
    220   1.6  christos iteration_on_null_or_missing_parameter_head() {
    221   1.6  christos 	atf_set "descr" \
    222   1.6  christos 	    'Check expansion of missing parameter as default for another null'
    223   1.6  christos }
    224   1.6  christos iteration_on_null_or_missing_parameter_body() {
    225   1.6  christos 	# atf_expect_fail 'PR bin/50834'
    226   1.6  christos 	atf_check -o empty -e empty ${TEST_SH} -c \
    227   1.6  christos 		'N=; set -- ${N:-}; for X; do echo "[$X]"; done'
    228   1.2       ast }
    229   1.2       ast 
    230  1.10       kre ####### The remaining tests use the following helper functions ...
    231  1.10       kre 
    232   1.7  christos nl='
    233   1.7  christos '
    234   1.7  christos reset()
    235   1.7  christos {
    236   1.7  christos 	TEST_NUM=0
    237   1.7  christos 	TEST_FAILURES=''
    238   1.7  christos 	TEST_FAIL_COUNT=0
    239   1.7  christos 	TEST_ID="$1"
    240   1.7  christos }
    241   1.7  christos 
    242   1.7  christos check()
    243   1.7  christos {
    244   1.7  christos 	fail=false
    245   1.7  christos 	TEMP_FILE=$( mktemp OUT.XXXXXX )
    246   1.7  christos 	TEST_NUM=$(( $TEST_NUM + 1 ))
    247   1.7  christos 	MSG=
    248   1.7  christos 
    249   1.7  christos 	# our local shell (ATF_SHELL) better do quoting correctly...
    250   1.7  christos 	# some of the tests expect us to expand $nl internally...
    251   1.7  christos 	CMD="$1"
    252   1.7  christos 
    253   1.7  christos 	result="$( ${TEST_SH} -c "${CMD}" 2>"${TEMP_FILE}" )"
    254   1.7  christos 	STATUS=$?
    255   1.7  christos 
    256   1.7  christos 	if [ "${STATUS}" -ne "$3" ]; then
    257   1.7  christos 		MSG="${MSG}${MSG:+${nl}}[$TEST_NUM]"
    258   1.7  christos 		MSG="${MSG} expected exit code $3, got ${STATUS}"
    259   1.7  christos 
    260   1.7  christos 		# don't actually fail just because of wrong exit code
    261   1.7  christos 		# unless we either expected, or received "good"
    262   1.7  christos 		case "$3/${STATUS}" in
    263   1.7  christos 		(*/0|0/*) fail=true;;
    264   1.7  christos 		esac
    265   1.7  christos 	fi
    266   1.7  christos 
    267   1.7  christos 	if [ "$3" -eq 0 ]; then
    268   1.7  christos 		if [ -s "${TEMP_FILE}" ]; then
    269   1.7  christos 			MSG="${MSG}${MSG:+${nl}}[$TEST_NUM]"
    270   1.7  christos 			MSG="${MSG} Messages produced on stderr unexpected..."
    271   1.7  christos 			MSG="${MSG}${nl}$( cat "${TEMP_FILE}" )"
    272   1.7  christos 			fail=true
    273   1.7  christos 		fi
    274   1.7  christos 	else
    275   1.7  christos 		if ! [ -s "${TEMP_FILE}" ]; then
    276   1.7  christos 			MSG="${MSG}${MSG:+${nl}}[$TEST_NUM]"
    277   1.7  christos 			MSG="${MSG} Expected messages on stderr,"
    278   1.7  christos 			MSG="${MSG} nothing produced"
    279   1.7  christos 			fail=true
    280   1.7  christos 		fi
    281   1.7  christos 	fi
    282   1.7  christos 	rm -f "${TEMP_FILE}"
    283   1.7  christos 
    284   1.7  christos 	# Remove newlines (use local shell for this)
    285   1.7  christos 	oifs="$IFS"
    286   1.7  christos 	IFS="$nl"
    287   1.7  christos 	result="$(echo $result)"
    288   1.7  christos 	IFS="$oifs"
    289   1.7  christos 	if [ "$2" != "$result" ]
    290   1.7  christos 	then
    291   1.7  christos 		MSG="${MSG}${MSG:+${nl}}[$TEST_NUM]"
    292   1.7  christos 		MSG="${MSG} Expected output '$2', received '$result'"
    293   1.7  christos 		fail=true
    294   1.7  christos 	fi
    295   1.7  christos 
    296   1.7  christos 	if $fail
    297   1.7  christos 	then
    298   1.7  christos 		MSG="${MSG}${MSG:+${nl}}[$TEST_NUM]"
    299   1.7  christos 		MSG="${MSG} Full command: <<${CMD}>>"
    300   1.7  christos 	fi
    301   1.7  christos 
    302   1.7  christos 	$fail && test -n "$TEST_ID" && {
    303   1.7  christos 		TEST_FAILURES="${TEST_FAILURES}${TEST_FAILURES:+${nl}}"
    304   1.7  christos 		TEST_FAILURES="${TEST_FAILURES}${TEST_ID}[$TEST_NUM]:"
    305   1.7  christos 		TEST_FAILURES="${TEST_FAILURES} Test of '$1' failed.";
    306   1.7  christos 		TEST_FAILURES="${TEST_FAILURES}${nl}${MSG}"
    307   1.7  christos 		TEST_FAIL_COUNT=$(( $TEST_FAIL_COUNT + 1 ))
    308   1.7  christos 		return 0
    309   1.7  christos 	}
    310   1.7  christos 	$fail && atf_fail "Test[$TEST_NUM] of '$1' failed${nl}${MSG}"
    311   1.7  christos 	return 0
    312   1.7  christos }
    313   1.7  christos 
    314   1.7  christos results()
    315   1.7  christos {
    316  1.10       kre 	test -n "$1" && atf_expect_fail "$1"
    317  1.10       kre 
    318   1.7  christos 	test -z "${TEST_ID}" && return 0
    319   1.7  christos 	test -z "${TEST_FAILURES}" && return 0
    320   1.7  christos 
    321   1.7  christos 	echo >&2 "=========================================="
    322   1.7  christos 	echo >&2 "While testing '${TEST_ID}'"
    323   1.7  christos 	echo >&2 " - - - - - - - - - - - - - - - - -"
    324   1.7  christos 	echo >&2 "${TEST_FAILURES}"
    325  1.10       kre 
    326   1.7  christos 	atf_fail \
    327   1.9       kre  "Test ${TEST_ID}: $TEST_FAIL_COUNT (of $TEST_NUM) subtests failed - see stderr"
    328   1.7  christos }
    329   1.7  christos 
    330  1.10       kre ####### End helpers
    331  1.10       kre 
    332   1.7  christos atf_test_case shell_params
    333   1.7  christos shell_params_head() {
    334   1.7  christos 	atf_set "descr" "Test correct operation of the numeric parameters"
    335   1.7  christos }
    336   1.7  christos shell_params_body() {
    337   1.7  christos 	atf_require_prog mktemp
    338   1.7  christos 
    339   1.7  christos 	reset shell_params
    340   1.7  christos 
    341   1.7  christos 	check 'set -- a b c; echo "$#: $1 $2 $3"' '3: a b c' 0
    342   1.7  christos 	check 'set -- a b c d e f g h i j k l m; echo "$#: ${1}0 ${10} $10"' \
    343   1.7  christos 		'13: a0 j a0' 0
    344   1.7  christos 	check 'x="$0"; set -- a b; y="$0";
    345   1.7  christos 	      [ "x${x}y" = "x${y}y" ] && echo OK || echo x="$x" y="$y"' \
    346   1.7  christos 		'OK' 0
    347   1.7  christos 	check "${TEST_SH} -c 'echo 0=\$0 1=\$1 2=\$2' a b c" '0=a 1=b 2=c' 0
    348   1.7  christos 
    349   1.7  christos 	echo 'echo 0="$0" 1="$1" 2="$2"' > helper.sh
    350   1.8  christos 	check "${TEST_SH} helper.sh a b c" '0=helper.sh 1=a 2=b' 0
    351   1.7  christos 
    352   1.7  christos 	check 'set -- a bb ccc dddd eeeee ffffff ggggggg hhhhhhhh \
    353   1.7  christos 		iiiiiiiii jjjjjjjjjj kkkkkkkkkkk
    354   1.7  christos 	       echo "${#}: ${#1} ${#2} ${#3} ${#4} ... ${#9} ${#10} ${#11}"' \
    355   1.7  christos 		 '11: 1 2 3 4 ... 9 10 11' 0
    356   1.7  christos 
    357   1.7  christos 	check 'set -- a b c; echo "$#: ${1-A} ${2-B} ${3-C} ${4-D} ${5-E}"' \
    358   1.7  christos 		'3: a b c D E' 0
    359   1.7  christos 	check 'set -- a "" c "" e
    360   1.7  christos 	       echo "$#: ${1:-A} ${2:-B} ${3:-C} ${4:-D} ${5:-E}"' \
    361   1.7  christos 		'5: a B c D e' 0
    362   1.7  christos 	check 'set -- a "" c "" e
    363   1.7  christos 	       echo "$#: ${1:+A} ${2:+B} ${3:+C} ${4:+D} ${5:+E}"' \
    364   1.7  christos 		'5: A  C  E' 0
    365   1.7  christos 	check 'set -- "abab*cbb"
    366   1.7  christos 	       echo "${1} ${1#a} ${1%b} ${1##ab} ${1%%b} ${1#*\*} ${1%\**}"' \
    367   1.7  christos 	       'abab*cbb bab*cbb abab*cb ab*cbb abab*cb cbb abab' 0
    368   1.7  christos 	check 'set -- "abab?cbb"
    369   1.7  christos     echo "${1}:${1#*a}+${1%b*}-${1##*a}_${1%%b*}%${1#[ab]}=${1%?*}/${1%\?*}"' \
    370   1.7  christos 	       'abab?cbb:bab?cbb+abab?cb-b?cbb_a%bab?cbb=abab?cb/abab' 0
    371   1.7  christos 	check 'set -- a "" c "" e; echo "${2:=b}"' '' 1
    372   1.7  christos 
    373   1.7  christos 	results
    374   1.7  christos }
    375   1.7  christos 
    376   1.9       kre atf_test_case var_with_embedded_cmdsub
    377   1.9       kre var_with_embedded_cmdsub_head() {
    378   1.9       kre 	atf_set "descr" "Test expansion of vars with embedded cmdsub"
    379   1.9       kre }
    380   1.9       kre var_with_embedded_cmdsub_body() {
    381   1.9       kre 
    382   1.9       kre 	reset var_with_embedded_cmdsub
    383   1.9       kre 
    384   1.9       kre 	check 'unset x; echo ${x-$(echo a)}$(echo b)'  'ab' 0	#1
    385   1.9       kre 	check 'unset x; echo ${x:-$(echo a)}$(echo b)' 'ab' 0	#2
    386   1.9       kre 	check 'x=""; echo ${x-$(echo a)}$(echo b)'     'b'  0	#3
    387   1.9       kre 	check 'x=""; echo ${x:-$(echo a)}$(echo b)'    'ab' 0	#4
    388   1.9       kre 	check 'x=c; echo ${x-$(echo a)}$(echo b)'      'cb' 0	#5
    389   1.9       kre 	check 'x=c; echo ${x:-$(echo a)}$(echo b)'     'cb' 0	#6
    390   1.9       kre 
    391   1.9       kre 	check 'unset x; echo ${x+$(echo a)}$(echo b)'  'b'  0	#7
    392   1.9       kre 	check 'unset x; echo ${x:+$(echo a)}$(echo b)' 'b'  0	#8
    393   1.9       kre 	check 'x=""; echo ${x+$(echo a)}$(echo b)'     'ab' 0	#9
    394   1.9       kre 	check 'x=""; echo ${x:+$(echo a)}$(echo b)'    'b'  0	#10
    395   1.9       kre 	check 'x=c; echo ${x+$(echo a)}$(echo b)'      'ab' 0	#11
    396   1.9       kre 	check 'x=c; echo ${x:+$(echo a)}$(echo b)'     'ab' 0	#12
    397   1.9       kre 
    398   1.9       kre 	check 'unset x; echo ${x=$(echo a)}$(echo b)'  'ab' 0	#13
    399   1.9       kre 	check 'unset x; echo ${x:=$(echo a)}$(echo b)' 'ab' 0	#14
    400   1.9       kre 	check 'x=""; echo ${x=$(echo a)}$(echo b)'     'b'  0	#15
    401   1.9       kre 	check 'x=""; echo ${x:=$(echo a)}$(echo b)'    'ab' 0	#16
    402   1.9       kre 	check 'x=c; echo ${x=$(echo a)}$(echo b)'      'cb' 0	#17
    403   1.9       kre 	check 'x=c; echo ${x:=$(echo a)}$(echo b)'     'cb' 0	#18
    404   1.9       kre 
    405   1.9       kre 	check 'unset x; echo ${x?$(echo a)}$(echo b)'  ''   2	#19
    406   1.9       kre 	check 'unset x; echo ${x:?$(echo a)}$(echo b)' ''   2	#20
    407   1.9       kre 	check 'x=""; echo ${x?$(echo a)}$(echo b)'     'b'  0	#21
    408   1.9       kre 	check 'x=""; echo ${x:?$(echo a)}$(echo b)'    ''   2	#22
    409   1.9       kre 	check 'x=c; echo ${x?$(echo a)}$(echo b)'      'cb' 0	#23
    410   1.9       kre 	check 'x=c; echo ${x:?$(echo a)}$(echo b)'     'cb' 0	#24
    411   1.9       kre 
    412   1.9       kre 	check 'unset x; echo ${x%$(echo a)}$(echo b)'  'b'  0	#25
    413   1.9       kre 	check 'unset x; echo ${x%%$(echo a)}$(echo b)' 'b'  0	#26
    414   1.9       kre 	check 'x=""; echo ${x%$(echo a)}$(echo b)'     'b'  0	#27
    415   1.9       kre 	check 'x=""; echo ${x%%$(echo a)}$(echo b)'    'b'  0	#28
    416   1.9       kre 	check 'x=c; echo ${x%$(echo a)}$(echo b)'      'cb' 0	#29
    417   1.9       kre 	check 'x=c; echo ${x%%$(echo a)}$(echo b)'     'cb' 0	#30
    418   1.9       kre 	check 'x=aa; echo ${x%$(echo "*a")}$(echo b)'  'ab' 0	#31
    419   1.9       kre 	check 'x=aa; echo ${x%%$(echo "*a")}$(echo b)' 'b'  0	#32
    420   1.9       kre 
    421   1.9       kre 	check 'unset x; echo ${x#$(echo a)}$(echo b)'  'b'  0	#33
    422   1.9       kre 	check 'unset x; echo ${x##$(echo a)}$(echo b)' 'b'  0	#34
    423   1.9       kre 	check 'x=""; echo ${x#$(echo a)}$(echo b)'     'b'  0	#35
    424   1.9       kre 	check 'x=""; echo ${x##$(echo a)}$(echo b)'    'b'  0	#36
    425   1.9       kre 	check 'x=c; echo ${x#$(echo a)}$(echo b)'      'cb' 0	#37
    426   1.9       kre 	check 'x=c; echo ${x##$(echo a)}$(echo b)'     'cb' 0	#38
    427   1.9       kre 	check 'x=aa; echo ${x#$(echo "*a")}$(echo b)'  'ab' 0	#39
    428   1.9       kre 	check 'x=aa; echo ${x##$(echo "*a")}$(echo b)' 'b'  0	#40
    429   1.9       kre 
    430   1.9       kre 	results
    431   1.9       kre }
    432   1.9       kre 
    433  1.12       kre atf_test_case dollar_hash
    434  1.12       kre dollar_hash_head() {
    435  1.12       kre 	atf_set "descr" 'Test expansion of various aspects of $#'
    436  1.12       kre }
    437  1.12       kre dollar_hash_body() {
    438  1.12       kre 
    439  1.12       kre #
    440  1.12       kre #	$# looks like it should be so simple that it doesn't really
    441  1.12       kre #	need a test of its own, and used in that way, it really doesn't.
    442  1.12       kre #	But when we add braces ${#} we need to deal with the three
    443  1.12       kre #	(almost 4) different meanings of a # inside a ${} expansion...
    444  1.12       kre #	
    445  1.12       kre #		1.   ${#} is just $# (number of params)
    446  1.12       kre #		1.a	${\#} is nothing at all (error: invalid expansion)
    447  1.12       kre #		1.b	${\#...} (anything after) is the same (invalid)
    448  1.12       kre #		2.   ${#VAR} is the length of the value VAR
    449  1.12       kre #		2.a	Including ${##} - the length of ${#}
    450  1.12       kre #		3    ${VAR#pat} is the value of VAR with leading pat removed
    451  1.12       kre #		3.a	Including ${VAR#} which just removes leading nothing
    452  1.12       kre #			This is relevant in case of ${VAR#${X}} with X=''
    453  1.12       kre #		3.b	${##} is not a case of 3.a but rather 2.a 
    454  1.12       kre #		3.c	Yet ${##pat} is a case of 3.a
    455  1.12       kre #			Including ${##${X}} where X='' or X='#'
    456  1.12       kre #		3.d	And ${#\#} is invalid (error)
    457  1.12       kre #		3.e	But ${##\#} removes a leading # from the value of $#
    458  1.12       kre #			(so is just $# as there is no leading # there)
    459  1.12       kre #		4    ${VAR##pat} is the value of VAR with longest pat removed
    460  1.12       kre #		4.a	Including ${VAR##} which removes the longest nothing
    461  1.12       kre #		4.b	Which in this case includes ${###} (so is == $#)
    462  1.12       kre #		4.c	But not ${##\#} which is $# with a leading '#' removed
    463  1.12       kre #			(and so is also == $#), i.e.: like ${###} but different.
    464  1.12       kre #		4.d	As is ${###\#} or just ${####} - remove  # (so just $#)
    465  1.12       kre #
    466  1.12       kre 
    467  1.12       kre 	reset dollar_hash
    468  1.12       kre 
    469  1.12       kre 	check 'set -- ; echo $#'			'0'		0  # 1
    470  1.12       kre 	check 'set -- a b c; echo $#'			'3'		0  # 2
    471  1.12       kre 	check 'set -- a b c d e f g h i j; echo $#'	'10'		0  # 3
    472  1.12       kre # rule 1
    473  1.12       kre 	check 'set -- ; echo ${#}'			'0'		0  # 4
    474  1.12       kre 	check 'set -- a b c; echo ${#}'			'3'		0  # 5
    475  1.12       kre 	check 'set -- a b c d e f g h i j; echo ${#}'	'10'		0  # 6
    476  1.12       kre # rule 1.a
    477  1.12       kre 	check 'set -- a b c; echo ${\#}'		''		2  # 7
    478  1.12       kre # rule 1.b
    479  1.12       kre 	check 'set -- a b c; echo ${\#:-foo}'		''		2  # 8
    480  1.12       kre # rule 2
    481  1.12       kre 	check 'VAR=12345; echo ${#VAR}'			'5'		0  # 9
    482  1.12       kre 	check 'VAR=123456789012; echo ${#VAR}'		'12'		0  #10
    483  1.12       kre # rule 2.a
    484  1.12       kre 	check 'set -- ; echo ${##}'			'1'		0  #11
    485  1.12       kre 	check 'set -- a b c; echo ${##}'		'1'		0  #12
    486  1.12       kre 	check 'set -- a b c d e f g h i j; echo ${##}'	'2'		0  #13
    487  1.12       kre # rule 3
    488  1.12       kre 	check 'VAR=12345; echo ${VAR#1}'		'2345'		0  #14
    489  1.12       kre 	check 'VAR=12345; echo ${VAR#2}'		'12345'		0  #15
    490  1.12       kre 	check 'VAR=#2345; echo ${VAR#\#}'		'2345'		0  #16
    491  1.12       kre 	check 'X=1; VAR=12345; echo ${VAR#${X}}'	'2345'		0  #17
    492  1.12       kre 	check 'X=1; VAR=#2345; echo ${VAR#${X}}'	'#2345'		0  #18
    493  1.12       kre # rule 3.a
    494  1.12       kre 	check 'VAR=12345; echo ${VAR#}'			'12345'		0  #19
    495  1.12       kre 	check 'X=; VAR=12345; echo ${VAR#${X}}'		'12345'		0  #20
    496  1.12       kre # rule 3.b (tested above, rule 2.a)
    497  1.12       kre # rule 3.c
    498  1.12       kre 	check 'set -- ; echo ${##0}'			''		0  #21
    499  1.12       kre 	check 'set -- a b c; echo ${##1}'		'3'		0  #22
    500  1.12       kre 	check 'set -- a b c d e f g h i j; echo ${##1}'	'0'		0  #23
    501  1.12       kre 	check 'X=0; set -- ; echo ${##${X}}'		''		0  #24
    502  1.12       kre 	check 'X=; set -- ; echo ${##${X}}'		'0'		0  #25
    503  1.12       kre 	check 'X=1; set -- a b c; echo ${##${X}}'	'3'		0  #26
    504  1.12       kre 	check 'X=1; set -- a b c d e f g h i j; echo ${##${X}}'	'0'	0  #27
    505  1.12       kre 	check 'X=; set -- a b c d e f g h i j; echo ${##${X}}'	'10'	0  #28
    506  1.12       kre 	check 'X=#; VAR=#2345; echo ${VAR#${X}}'	'2345'		0  #29
    507  1.12       kre 	check 'X=#; VAR=12345; echo ${VAR#${X}}'	'12345'		0  #30
    508  1.12       kre # rule 3.d
    509  1.12       kre 	check 'set -- a b c; echo ${#\#}'		''		2  #31
    510  1.12       kre # rule 3.e
    511  1.12       kre 	check 'set -- ; echo ${##\#}'			'0'		0  #32
    512  1.12       kre 	check 'set -- a b c d e f g h i j; echo ${##\#}' '10'		0  #33
    513  1.12       kre 
    514  1.12       kre # rule 4
    515  1.12       kre 	check 'VAR=12345; echo ${VAR##1}'		'2345'		0  #34
    516  1.12       kre 	check 'VAR=12345; echo ${VAR##\1}'		'2345'		0  #35
    517  1.12       kre # rule 4.a
    518  1.12       kre 	check 'VAR=12345; echo ${VAR##}'		'12345'		0  #36
    519  1.12       kre # rule 4.b
    520  1.12       kre 	check 'set -- ; echo ${###}'			'0'		0  #37
    521  1.12       kre 	check 'set -- a b c d e f g h i j; echo ${###}'	'10'		0  #38
    522  1.12       kre # rule 4.c
    523  1.12       kre 	check 'VAR=12345; echo ${VAR#\#}'		'12345'		0  #39
    524  1.12       kre 	check 'VAR=12345; echo ${VAR#\#1}'		'12345'		0  #40
    525  1.12       kre 	check 'VAR=#2345; echo ${VAR#\#}'		'2345'		0  #41
    526  1.12       kre 	check 'VAR=#12345; echo ${VAR#\#1}'		'2345'		0  #42
    527  1.12       kre 	check 'VAR=#2345; echo ${VAR#\#1}'		'#2345'		0  #43
    528  1.12       kre 	check 'set -- ; echo ${####}'			'0'		0  #44
    529  1.12       kre 	check 'set -- ; echo ${###\#}'			'0'		0  #45
    530  1.12       kre 	check 'set -- a b c d e f g h i j; echo ${####}' '10'		0  #46
    531  1.12       kre 	check 'set -- a b c d e f g h i j; echo ${###\#}' '10'		0  #47
    532  1.12       kre 
    533  1.12       kre # now check for some more utter nonsense, not mentioned in the rules
    534  1.12       kre # above (doesn't need to be)
    535  1.12       kre 
    536  1.12       kre 	check 'x=hello; set -- a b c; echo ${#x:-1}'	''		2  #48
    537  1.12       kre 	check 'x=hello; set -- a b c; echo ${#x-1}'	''		2  #49
    538  1.12       kre 	check 'x=hello; set -- a b c; echo ${#x:+1}'	''		2  #50
    539  1.12       kre 	check 'x=hello; set -- a b c; echo ${#x+1}'	''		2  #51
    540  1.12       kre 	check 'x=hello; set -- a b c; echo ${#x+1}'	''		2  #52
    541  1.12       kre 	check 'x=hello; set -- a b c; echo ${#x:?msg}'	''		2  #53
    542  1.12       kre 	check 'x=hello; set -- a b c; echo ${#x?msg}'	''		2  #54
    543  1.12       kre 	check 'x=hello; set -- a b c; echo ${#x:=val}'	''		2  #55
    544  1.12       kre 	check 'x=hello; set -- a b c; echo ${#x=val}'	''		2  #56
    545  1.12       kre 	check 'x=hello; set -- a b c; echo ${#x#h}'	''		2  #57
    546  1.12       kre 	check 'x=hello; set -- a b c; echo ${#x#*l}'	''		2  #58
    547  1.12       kre 	check 'x=hello; set -- a b c; echo ${#x##*l}'	''		2  #59
    548  1.12       kre 	check 'x=hello; set -- a b c; echo ${#x%o}'	''		2  #60
    549  1.12       kre 	check 'x=hello; set -- a b c; echo ${#x%l*}'	''		2  #61
    550  1.12       kre 	check 'x=hello; set -- a b c; echo ${#x%%l*}'	''		2  #62
    551  1.12       kre 
    552  1.12       kre # but just to be complete, these ones should work
    553  1.12       kre 
    554  1.12       kre 	check 'x=hello; set -- a b c; echo ${#%5}'	'3'		0  #63
    555  1.12       kre 	check 'x=hello; set -- a b c; echo ${#%3}'	''		0  #64
    556  1.12       kre 	check 'x=hello; set -- a b c; echo ${#%?}'	''		0  #65
    557  1.12       kre 	check 'X=#; set -- a b c; echo ${#%${X}}'	'3'		0  #66
    558  1.12       kre 	check 'X=3; set -- a b c; echo ${#%${X}}'	''		0  #67
    559  1.12       kre 	check 'set -- a b c; echo ${#%%5}'		'3'		0  #68
    560  1.12       kre 	check 'set -- a b c; echo ${#%%3}'		''		0  #69
    561  1.12       kre 	check 'set -- a b c d e f g h i j k l; echo ${#%1}' '12'	0  #70
    562  1.12       kre 	check 'set -- a b c d e f g h i j k l; echo ${#%2}' '1'		0  #71
    563  1.12       kre 	check 'set -- a b c d e f g h i j k l; echo ${#%?}' '1'		0  #72
    564  1.12       kre 	check 'set -- a b c d e f g h i j k l; echo ${#%[012]}' '1'	0  #73
    565  1.12       kre 	check 'set -- a b c d e f g h i j k l; echo ${#%[0-4]}' '1'	0  #74
    566  1.12       kre 	check 'set -- a b c d e f g h i j k l; echo ${#%?2}' ''		0  #75
    567  1.12       kre 	check 'set -- a b c d e f g h i j k l; echo ${#%1*}' ''		0  #76
    568  1.12       kre 	check 'set -- a b c d e f g h i j k l; echo ${#%%2}' '1'	0  #77
    569  1.12       kre 	check 'set -- a b c d e f g h i j k l; echo ${#%%1*}' ''	0  #78
    570  1.12       kre 
    571  1.12       kre # and this lot are stupid, as $# is never unset or null, but they do work...
    572  1.12       kre 
    573  1.12       kre 	check 'set -- a b c; echo ${#:-99}'		'3'		0  #79
    574  1.12       kre 	check 'set -- a b c; echo ${#-99}'		'3'		0  #80
    575  1.12       kre 	check 'set -- a b c; echo ${#:+99}'		'99'		0  #81
    576  1.12       kre 	check 'set -- a b c; echo ${#+99}'		'99'		0  #82
    577  1.12       kre 	check 'set -- a b c; echo ${#:?bogus}'		'3'		0  #83
    578  1.12       kre 	check 'set -- a b c; echo ${#?bogus}'		'3'		0  #84
    579  1.12       kre 
    580  1.12       kre # even this utter nonsense is OK, as while special params cannot be
    581  1.12       kre # set this way, here, as $# is not unset, or null, the assignment
    582  1.12       kre # never happens (isn't even attempted)
    583  1.12       kre 
    584  1.12       kre 	check 'set -- a b c; echo ${#:=bogus}'		'3'		0  #85
    585  1.12       kre 	check 'set -- a b c; echo ${#=bogus}'		'3'		0  #86
    586  1.12       kre 
    587  1.12       kre 	results
    588  1.12       kre }
    589  1.12       kre 
    590  1.10       kre atf_test_case dollar_star
    591  1.10       kre dollar_star_head() {
    592  1.10       kre 	atf_set "descr" 'Test expansion of various aspects of $*'
    593  1.10       kre }
    594  1.10       kre dollar_star_body() {
    595  1.10       kre 
    596  1.12       kre 	reset dollar_star
    597  1.10       kre 
    598  1.10       kre 	check 'set -- a b c; echo $# $*'		'3 a b c'	0  # 1
    599  1.10       kre 	check 'set -- a b c; echo $# "$*"'		'3 a b c'	0  # 2
    600  1.10       kre 	check 'set -- a "b c"; echo $# $*'		'2 a b c'	0  # 3
    601  1.10       kre 	check 'set -- a "b c"; echo $# "$*"'		'2 a b c'	0  # 4
    602  1.10       kre 	check 'set -- a b c; set -- $* ; echo $# $*'	'3 a b c'	0  # 5
    603  1.10       kre 	check 'set -- a b c; set -- "$*" ; echo $# $*'	'1 a b c'	0  # 6
    604  1.10       kre 	check 'set -- a "b c"; set -- $* ; echo $# $*'	'3 a b c'	0  # 7
    605  1.10       kre 	check 'set -- a "b c"; set -- "$*" ; echo $# $*' \
    606  1.10       kre 							'1 a b c'	0  # 8
    607  1.10       kre 
    608  1.10       kre 	check 'IFS=". "; set -- a b c; echo $# $*'	'3 a b c'	0  # 9
    609  1.10       kre 	check 'IFS=". "; set -- a b c; echo $# "$*"'	'3 a.b.c'	0  #10
    610  1.10       kre 	check 'IFS=". "; set -- a "b c"; echo $# $*'	'2 a b c'	0  #11
    611  1.10       kre 	check 'IFS=". "; set -- a "b c"; echo $# "$*"'	'2 a.b c'	0  #12
    612  1.10       kre 	check 'IFS=". "; set -- a "b.c"; echo $# $*'	'2 a b c'	0  #13
    613  1.10       kre 	check 'IFS=". "; set -- a "b.c"; echo $# "$*"'	'2 a.b.c'	0  #14
    614  1.10       kre 	check 'IFS=". "; set -- a b c; set -- $* ; echo $# $*' \
    615  1.10       kre 							'3 a b c'	0  #15
    616  1.10       kre 	check 'IFS=". "; set -- a b c; set -- "$*" ; echo $# $*' \
    617  1.10       kre 							'1 a b c'	0  #16
    618  1.10       kre 	check 'IFS=". "; set -- a "b c"; set -- $* ; echo $# $*' \
    619  1.10       kre 							'3 a b c'	0  #17
    620  1.10       kre 	check 'IFS=". "; set -- a "b c"; set -- "$*" ; echo $# $*' \
    621  1.10       kre 							'1 a b c'	0  #18
    622  1.10       kre 	check 'IFS=". "; set -- a b c; set -- $* ; echo $# "$*"' \
    623  1.10       kre 							'3 a.b.c'	0  #19
    624  1.10       kre 	check 'IFS=". "; set -- a b c; set -- "$*" ; echo $# "$*"' \
    625  1.10       kre 							'1 a.b.c'	0  #20
    626  1.10       kre 	check 'IFS=". "; set -- a "b c"; set -- $* ; echo $# "$*"' \
    627  1.10       kre 							'3 a.b.c'	0  #21
    628  1.10       kre 	check 'IFS=". "; set -- a "b c"; set -- "$*" ; echo $# "$*"' \
    629  1.10       kre 							'1 a.b c'	0  #22
    630  1.10       kre 
    631  1.10       kre 	results
    632  1.10       kre }
    633  1.10       kre 
    634  1.10       kre atf_test_case dollar_star_in_word
    635  1.10       kre dollar_star_in_word_head() {
    636  1.10       kre 	atf_set "descr" 'Test expansion $* occurring in word of ${var:-word}'
    637  1.10       kre }
    638  1.10       kre dollar_star_in_word_body() {
    639  1.10       kre 
    640  1.10       kre 	reset dollar_star_in_word
    641  1.10       kre 
    642  1.10       kre 	unset xXx			; # just in case!
    643  1.10       kre 
    644  1.10       kre 	# Note that the expected results for these tests are identical
    645  1.10       kre 	# to those from the dollar_star test.   It should never make
    646  1.10       kre 	# a difference whether we expand $* or ${unset:-$*}
    647  1.10       kre 
    648  1.10       kre 	# (note expanding ${unset:-"$*"} is different, that is not tested here)
    649  1.10       kre 
    650  1.10       kre 	check 'set -- a b c; echo $# ${xXx:-$*}'		'3 a b c' 0  # 1
    651  1.10       kre 	check 'set -- a b c; echo $# "${xXx:-$*}"'		'3 a b c' 0  # 2
    652  1.10       kre 	check 'set -- a "b c"; echo $# ${xXx:-$*}'		'2 a b c' 0  # 3
    653  1.10       kre 	check 'set -- a "b c"; echo $# "${xXx:-$*}"'		'2 a b c' 0  # 4
    654  1.10       kre 	check 'set -- a b c; set -- ${xXx:-$*} ; echo $# $*'	'3 a b c' 0  # 5
    655  1.10       kre 	check 'set -- a b c; set -- "${xXx:-$*}" ; echo $# $*'	'1 a b c' 0  # 6
    656  1.10       kre 	check 'set -- a "b c"; set -- ${xXx:-$*} ; echo $# $*'	'3 a b c' 0  # 7
    657  1.10       kre 	check 'set -- a "b c"; set -- "${xXx:-$*}" ; echo $# $*' \
    658  1.10       kre 								'1 a b c' 0  # 8
    659  1.10       kre 
    660  1.10       kre 	check 'IFS=". "; set -- a b c; echo $# ${xXx:-$*}'	'3 a b c' 0  # 9
    661  1.10       kre 	check 'IFS=". "; set -- a b c; echo $# "${xXx:-$*}"'	'3 a.b.c' 0  #10
    662  1.10       kre 	check 'IFS=". "; set -- a "b c"; echo $# ${xXx:-$*}'	'2 a b c' 0  #11
    663  1.10       kre 	check 'IFS=". "; set -- a "b c"; echo $# "${xXx:-$*}"'	'2 a.b c' 0  #12
    664  1.10       kre 	check 'IFS=". "; set -- a "b.c"; echo $# ${xXx:-$*}'	'2 a b c' 0  #13
    665  1.10       kre 	check 'IFS=". "; set -- a "b.c"; echo $# "${xXx:-$*}"'	'2 a.b.c' 0  #14
    666  1.10       kre 	check 'IFS=". ";set -- a b c;set -- ${xXx:-$*};echo $# ${xXx:-$*}' \
    667  1.10       kre 								'3 a b c' 0  #15
    668  1.10       kre 	check 'IFS=". ";set -- a b c;set -- "${xXx:-$*}";echo $# ${xXx:-$*}' \
    669  1.10       kre 								'1 a b c' 0  #16
    670  1.10       kre 	check 'IFS=". ";set -- a "b c";set -- ${xXx:-$*};echo $# ${xXx:-$*}' \
    671  1.10       kre 								'3 a b c' 0  #17
    672  1.10       kre 	check 'IFS=". ";set -- a "b c";set -- "${xXx:-$*}";echo $# ${xXx:-$*}' \
    673  1.10       kre 								'1 a b c' 0  #18
    674  1.10       kre 	check 'IFS=". ";set -- a b c;set -- ${xXx:-$*};echo $# "${xXx:-$*}"' \
    675  1.10       kre 								'3 a.b.c' 0  #19
    676  1.10       kre 	check 'IFS=". ";set -- a b c;set -- "$*";echo $# "$*"' \
    677  1.10       kre 								'1 a.b.c' 0  #20
    678  1.10       kre 	check 'IFS=". ";set -- a "b c";set -- $*;echo $# "$*"' \
    679  1.10       kre 								'3 a.b.c' 0  #21
    680  1.10       kre 	check 'IFS=". ";set -- a "b c";set -- "$*";echo $# "$*"' \
    681  1.10       kre 								'1 a.b c' 0  #22
    682  1.10       kre 
    683  1.10       kre 	results
    684  1.10       kre }
    685  1.10       kre 
    686  1.10       kre atf_test_case dollar_star_with_empty_ifs
    687  1.10       kre dollar_star_with_empty_ifs_head() {
    688  1.10       kre 	atf_set "descr" 'Test expansion of $* with IFS=""'
    689  1.10       kre }
    690  1.10       kre dollar_star_with_empty_ifs_body() {
    691  1.10       kre 
    692  1.10       kre 	reset dollar_star_with_empty_ifs
    693  1.10       kre 
    694  1.10       kre 	check 'IFS=""; set -- a b c; echo $# $*'	'3 a b c'	0  # 1
    695  1.10       kre 	check 'IFS=""; set -- a b c; echo $# "$*"'	'3 abc'		0  # 2
    696  1.10       kre 	check 'IFS=""; set -- a "b c"; echo $# $*'	'2 a b c'	0  # 3
    697  1.10       kre 	check 'IFS=""; set -- a "b c"; echo $# "$*"'	'2 ab c'	0  # 4
    698  1.10       kre 	check 'IFS=""; set -- a "b.c"; echo $# $*'	'2 a b.c'	0  # 5
    699  1.10       kre 	check 'IFS=""; set -- a "b.c"; echo $# "$*"'	'2 ab.c'	0  # 6
    700  1.10       kre 	check 'IFS=""; set -- a b c; set -- $* ; echo $# $*' \
    701  1.10       kre 							'3 a b c'	0  # 7
    702  1.10       kre 	check 'IFS=""; set -- a b c; set -- "$*" ; echo $# $*' \
    703  1.10       kre 							'1 abc'		0  # 8
    704  1.10       kre 	check 'IFS=""; set -- a "b c"; set -- $* ; echo $# $*' \
    705  1.10       kre 							'2 a b c'	0  # 9
    706  1.10       kre 	check 'IFS=""; set -- a "b c"; set -- "$*" ; echo $# $*' \
    707  1.10       kre 							'1 ab c'	0  #10
    708  1.10       kre 	check 'IFS=""; set -- a b c; set -- $* ; echo $# "$*"' \
    709  1.10       kre 							'3 abc'		0  #11
    710  1.10       kre 	check 'IFS=""; set -- a b c; set -- "$*" ; echo $# "$*"' \
    711  1.10       kre 							'1 abc'		0  #12
    712  1.10       kre 	check 'IFS=""; set -- a "b c"; set -- $* ; echo $# "$*"' \
    713  1.10       kre 							'2 ab c'	0  #13
    714  1.10       kre 	check 'IFS=""; set -- a "b c"; set -- "$*" ; echo $# "$*"' \
    715  1.10       kre 							'1 ab c'	0  #14
    716  1.10       kre 
    717  1.11       kre 	results	  # FIXED: 'PR bin/52090 expect 7 of 14 subtests to fail'
    718  1.10       kre }
    719  1.10       kre 
    720  1.10       kre atf_test_case dollar_star_in_word_empty_ifs
    721  1.10       kre dollar_star_in_word_empty_ifs_head() {
    722  1.10       kre 	atf_set "descr" 'Test expansion of ${unset:-$*} with IFS=""'
    723  1.10       kre }
    724  1.10       kre dollar_star_in_word_empty_ifs_body() {
    725  1.10       kre 
    726  1.10       kre 	reset dollar_star_in_word_empty_ifs
    727  1.10       kre 
    728  1.10       kre 	unset xXx			; # just in case
    729  1.10       kre 
    730  1.10       kre 	# Note that the expected results for these tests are identical
    731  1.10       kre 	# to those from the dollar_star_with_empty_ifs test.   It should
    732  1.10       kre 	# never make a difference whether we expand $* or ${unset:-$*}
    733  1.10       kre 
    734  1.10       kre 	# (note expanding ${unset:-"$*"} is different, that is not tested here)
    735  1.10       kre 
    736  1.10       kre 	check 'IFS="";set -- a b c;echo $# ${xXx:-$*}'		'3 a b c' 0  # 1
    737  1.10       kre 	check 'IFS="";set -- a b c;echo $# "${xXx:-$*}"'	'3 abc'	  0  # 2
    738  1.10       kre 	check 'IFS="";set -- a "b c";echo $# ${xXx:-$*}'	'2 a b c' 0  # 3
    739  1.10       kre 	check 'IFS="";set -- a "b c";echo $# "${xXx:-$*}"'	'2 ab c'  0  # 4
    740  1.10       kre 	check 'IFS="";set -- a "b.c";echo $# ${xXx:-$*}'	'2 a b.c' 0  # 5
    741  1.10       kre 	check 'IFS="";set -- a "b.c";echo $# "${xXx:-$*}"'	'2 ab.c'  0  # 6
    742  1.10       kre 	check 'IFS="";set -- a b c;set -- ${xXx:-$*};echo $# ${xXx:-$*}' \
    743  1.10       kre 								'3 a b c' 0  # 7
    744  1.10       kre 	check 'IFS="";set -- a b c;set -- "${xXx:-$*}";echo $# ${xXx:-$*}' \
    745  1.10       kre 								'1 abc'   0  # 8
    746  1.10       kre 	check 'IFS="";set -- a "b c";set -- ${xXx:-$*};echo $# ${xXx:-$*}' \
    747  1.10       kre 								'2 a b c' 0  # 9
    748  1.10       kre 	check 'IFS="";set -- a "b c";set -- "${xXx:-$*}";echo $# ${xXx:-$*}' \
    749  1.10       kre 								'1 ab c'  0  #10
    750  1.10       kre 	check 'IFS="";set -- a b c;set -- ${xXx:-$*};echo $# "${xXx:-$*}"' \
    751  1.10       kre 								'3 abc'	  0  #11
    752  1.10       kre 	check 'IFS="";set -- a b c;set -- "${xXx:-$*}";echo $# "${xXx:-$*}"' \
    753  1.10       kre 								'1 abc'	  0  #12
    754  1.10       kre 	check 'IFS="";set -- a "b c";set -- ${xXx:-$*};echo $# "${xXx:-$*}"' \
    755  1.10       kre 								'2 ab c'  0  #13
    756  1.10       kre 	check 'IFS="";set -- a "b c";set -- "${xXx:-$*}";echo $# "${xXx:-$*}"' \
    757  1.10       kre 								'1 ab c'  0  #14
    758  1.10       kre 
    759  1.11       kre 	results	  # FIXED: 'PR bin/52090 expect 7 of 14 subtests to fail'
    760  1.10       kre }
    761  1.10       kre 
    762  1.10       kre atf_test_case dollar_star_in_quoted_word
    763  1.10       kre dollar_star_in_quoted_word_head() {
    764  1.10       kre 	atf_set "descr" 'Test expansion $* occurring in word of ${var:-"word"}'
    765  1.10       kre }
    766  1.10       kre dollar_star_in_quoted_word_body() {
    767  1.10       kre 
    768  1.10       kre 	reset dollar_star_in_quoted_word
    769  1.10       kre 
    770  1.10       kre 	unset xXx			; # just in case!
    771  1.10       kre 
    772  1.10       kre 	check 'set -- a b c; echo $# ${xXx:-"$*"}'		'3 a b c' 0  # 1
    773  1.10       kre 	check 'set -- a "b c"; echo $# ${xXx:-"$*"}'		'2 a b c' 0  # 2
    774  1.10       kre 	check 'set -- a b c; set -- ${xXx:-"$*"} ; echo $# ${xXx-"$*"}' \
    775  1.10       kre 								'1 a b c' 0  # 3
    776  1.10       kre 	check 'set -- a "b c"; set -- ${xXx:-"$*"} ; echo $# ${xXx-"$*"}' \
    777  1.10       kre 								'1 a b c' 0  # 4
    778  1.10       kre 	check 'set -- a b c; set -- ${xXx:-"$*"} ; echo $# ${xXx-"$*"}' \
    779  1.10       kre 								'1 a b c' 0  # 5
    780  1.10       kre 	check 'set -- a "b c"; set -- ${xXx:-"$*"} ; echo $# ${xXx-$*}' \
    781  1.10       kre 								'1 a b c' 0  # 6
    782  1.10       kre 	check 'set -- a b c; set -- ${xXx:-$*} ; echo $# ${xXx-"$*"}' \
    783  1.10       kre 								'3 a b c' 0  # 7
    784  1.10       kre 	check 'set -- a "b c"; set -- ${xXx:-$*} ; echo $# ${xXx-"$*"}' \
    785  1.10       kre 								'3 a b c' 0  # 8
    786  1.10       kre 
    787  1.10       kre 	check 'IFS=". "; set -- a b c; echo $# ${xXx:-"$*"}'	'3 a.b.c' 0  # 9
    788  1.10       kre 	check 'IFS=". "; set -- a "b c"; echo $# ${xXx:-"$*"}'	'2 a.b c' 0  #10
    789  1.10       kre 	check 'IFS=". "; set -- a "b.c"; echo $# ${xXx:-"$*"}'	'2 a.b.c' 0  #11
    790  1.10       kre 	check 'IFS=". ";set -- a b c;set -- ${xXx:-"$*"};echo $# ${xXx:-"$*"}' \
    791  1.10       kre 								'1 a.b.c' 0  #12
    792  1.10       kre       check 'IFS=". ";set -- a "b c";set -- ${xXx:-"$*"};echo $# ${xXx:-"$*"}' \
    793  1.10       kre 								'1 a.b c' 0  #13
    794  1.10       kre 	check 'IFS=". ";set -- a b c;set -- ${xXx:-$*};echo $# ${xXx:-"$*"}' \
    795  1.10       kre 								'3 a.b.c' 0  #14
    796  1.10       kre 	check 'IFS=". ";set -- a "b c";set -- ${xXx:-$*};echo $# ${xXx:-"$*"}' \
    797  1.10       kre 								'3 a.b.c' 0  #15
    798  1.10       kre 	check 'IFS=". ";set -- a b c;set -- ${xXx:-"$*"};echo $# ${xXx:-$*}' \
    799  1.10       kre 								'1 a b c' 0  #16
    800  1.10       kre 	check 'IFS=". ";set -- a "b c";set -- ${xXx:-"$*"};echo $# ${xXx:-$*}' \
    801  1.10       kre 								'1 a b c' 0  #17
    802  1.10       kre 
    803  1.10       kre 	check 'IFS="";set -- a b c;echo $# ${xXx:-"$*"}'	'3 abc'   0  #18
    804  1.10       kre 	check 'IFS="";set -- a "b c";echo $# ${xXx:-"$*"}'	'2 ab c'  0  #19
    805  1.10       kre 	check 'IFS="";set -- a "b.c";echo $# ${xXx:-"$*"}'	'2 ab.c'  0  #20
    806  1.10       kre 	check 'IFS="";set -- a b c;set -- ${xXx:-"$*"};echo $# ${xXx:-"$*"}' \
    807  1.10       kre 								'1 abc'   0  #21
    808  1.10       kre 	check 'IFS="";set -- a "b c";set -- ${xXx:-"$*"};echo $# ${xXx:-"$*"}' \
    809  1.10       kre 								'1 ab c'  0  #22
    810  1.10       kre 	check 'IFS="";set -- a b c;set -- ${xXx:-$*};echo $# ${xXx:-"$*"}' \
    811  1.10       kre 								'3 abc'   0  #23
    812  1.10       kre 	check 'IFS="";set -- a "b c";set -- ${xXx:-$*};echo $# ${xXx:-"$*"}' \
    813  1.10       kre 								'2 ab c'  0  #24
    814  1.10       kre 	check 'IFS="";set -- a b c;set -- ${xXx:-"$*"};echo $# ${xXx:-$*}' \
    815  1.10       kre 								'1 abc'   0  #25
    816  1.10       kre 	check 'IFS="";set -- a "b c";set -- ${xXx:-"$*"};echo $# ${xXx:-$*}' \
    817  1.10       kre 								'1 ab c'  0  #26
    818  1.10       kre 
    819  1.11       kre 	results	  # FIXED: 'PR bin/52090 - 2 of 26 subtests expected to fail'
    820  1.10       kre }
    821  1.10       kre 
    822   1.1    jruoho atf_init_test_cases() {
    823  1.10       kre 	# Listed here in the order ATF runs them, not the order from above
    824  1.10       kre 
    825  1.10       kre 	atf_add_test_case arithmetic
    826   1.1    jruoho 	atf_add_test_case dollar_at
    827   1.1    jruoho 	atf_add_test_case dollar_at_with_text
    828  1.12       kre 	atf_add_test_case dollar_hash
    829  1.10       kre 	atf_add_test_case dollar_star
    830  1.10       kre 	atf_add_test_case dollar_star_in_quoted_word
    831  1.10       kre 	atf_add_test_case dollar_star_in_word
    832  1.10       kre 	atf_add_test_case dollar_star_in_word_empty_ifs
    833  1.10       kre 	atf_add_test_case dollar_star_with_empty_ifs
    834   1.2       ast 	atf_add_test_case iteration_on_null_parameter
    835   1.6  christos 	atf_add_test_case iteration_on_quoted_null_parameter
    836   1.6  christos 	atf_add_test_case iteration_on_null_or_null_parameter
    837   1.6  christos 	atf_add_test_case iteration_on_null_or_missing_parameter
    838   1.7  christos 	atf_add_test_case shell_params
    839  1.10       kre 	atf_add_test_case strip
    840   1.9       kre 	atf_add_test_case var_with_embedded_cmdsub
    841  1.10       kre 	atf_add_test_case varpattern_backslashes
    842   1.1    jruoho }
    843