diff options
author | Wayne Davison <wayned@users.sourceforge.net> | 2005-08-10 07:50:07 +0000 |
---|---|---|
committer | Wayne Davison <wayned@users.sourceforge.net> | 2005-08-10 07:50:07 +0000 |
commit | a5d84c393a7b8d9305b9b5e8a5f14596d1b63ef5 (patch) | |
tree | 34f904d5eee45687e14f74831b2c3410a3db5bd2 | |
parent | e7ff1931eaef0e265bc532bf54b43baacaf99378 (diff) | |
download | zsh-a5d84c393a7b8d9305b9b5e8a5f14596d1b63ef5.tar.gz zsh-a5d84c393a7b8d9305b9b5e8a5f14596d1b63ef5.tar.xz zsh-a5d84c393a7b8d9305b9b5e8a5f14596d1b63ef5.zip |
Put the last test into a sub-shell so that it doesn't interfere
with the temp-file cleanup.
-rw-r--r-- | Test/B02typeset.ztst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Test/B02typeset.ztst b/Test/B02typeset.ztst index 0d7f0dcd5..048e5cdbe 100644 --- a/Test/B02typeset.ztst +++ b/Test/B02typeset.ztst @@ -342,7 +342,7 @@ >scalar a r y # The first declare works around the "not an identifier" bug with -h - declare \! \# \$ \* - \? @ 0 + (declare \! \# \$ \* - \? @ 0 typeset -h +g -m \* unset -m \* integer i=9 @@ -350,7 +350,7 @@ declare -t scalar declare -H -a array typeset - typeset + + typeset +) 0:Parameter hiding and tagging, printing types and values >array local array >float local f |