]> git.ipfire.org Git - thirdparty/bash.git/blobdiff - tests/dollar-at-star
Imported from ../bash-3.0.tar.gz.
[thirdparty/bash.git] / tests / dollar-at-star
index 1a754d8c6bf319472193d47914f567d7f36d4ee0..d8329b11f29a0fde1f448745da7b934166a1c489 100755 (executable)
@@ -207,4 +207,16 @@ 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
+
 exit 0