]> git.ipfire.org Git - thirdparty/bash.git/blobdiff - tests/varenv.tests
bash-5.1 distribution sources and documentation
[thirdparty/bash.git] / tests / varenv.tests
index 34b8559633116b123a8eda2d994b28cf58c021bf..b058ed4ff5080ff9295067f88b44ea5b9d14f441 100644 (file)
@@ -1,3 +1,16 @@
+#   This program is free software: you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation, either version 3 of the License, or
+#   (at your option) any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#
 #
 # varenv.sh
 #
@@ -234,13 +247,18 @@ ${THIS_SH} ./varenv11.sub
 # temporary environment variable propagation and scoping in posix mode
 ${THIS_SH} ./varenv12.sub
 
-# temporary environment and invalid shell indentifier names
+# temporary environment and invalid shell identifier names
 ${THIS_SH} ./varenv13.sub
 
 # localvar_inherit
 ${THIS_SH} ./varenv14.sub
-
 ${THIS_SH} ./varenv15.sub
+${THIS_SH} ./varenv16.sub
+${THIS_SH} ./varenv17.sub
+${THIS_SH} ./varenv18.sub
+${THIS_SH} ./varenv19.sub
+${THIS_SH} ./varenv20.sub
+${THIS_SH} ./varenv21.sub
 
 # make sure variable scoping is done right
 tt() { typeset a=b;echo a=$a; };a=z;echo a=$a;tt;echo a=$a