]> git.ipfire.org Git - thirdparty/bash.git/blobdiff - tests/varenv.sh
Bash-4.4 distribution sources and documentation
[thirdparty/bash.git] / tests / varenv.sh
index 6576282a647002843d4de0649e2ee27a50a58abb..a0d316903d3eac7bb97fc8924a243c4e8fbb2dba 100644 (file)
@@ -214,6 +214,12 @@ ${THIS_SH} ./varenv5.sub
 # variable scoping in the presence of nameref
 ${THIS_SH} ./varenv6.sub
 
+# variable declaration problems with arrays and readonly local variables
+${THIS_SH} ./varenv7.sub
+
+# variable visibility problems with process substitution subshells in
+# redirections
+${THIS_SH} ./varenv8.sub
+
 # make sure variable scoping is done right
 tt() { typeset a=b;echo a=$a; };a=z;echo a=$a;tt;echo a=$a
-