X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=tests%2Fdollar-at-star;h=25c24435b5b84e14753b5b811cabc2946a634031;hb=95732b497d12c98613bb3c5db16b61f377501a59;hp=1a754d8c6bf319472193d47914f567d7f36d4ee0;hpb=28ef6c316f1aff914bb95ac09787a3c83c1815fd;p=platform%2Fupstream%2Fbash.git diff --git a/tests/dollar-at-star b/tests/dollar-at-star index 1a754d8..25c2443 100755 --- a/tests/dollar-at-star +++ b/tests/dollar-at-star @@ -207,4 +207,20 @@ case "$@" in *) echo bad 4;; esac +# tests for special expansion of "$*" and "${array[*]}" when used with other +# expansions -- bugs through bash-2.05b +${THIS_SH} ./dollar-star1.sub + +# tests for expansion of "$@" on rhs of things like ${param:+word}. Bugs +# though bash-2.05b +${THIS_SH} ./dollar-at1.sub + +# tests for expansion of other variables in double-quoted strings containing +# $@. Bugs through bash-2.05b +${THIS_SH} ./dollar-at2.sub + +# tests for various expansions of $* in different contexts -- word split, +# no splitting, etc. when $IFS is NUL +${THIS_SH} ./dollar-star2.sub + exit 0