summaryrefslogtreecommitdiffstats
path: root/Test
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2012-12-13 10:36:59 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2012-12-13 10:36:59 +0000
commit1869eeb393e2499e9949cc3458cdd74685342540 (patch)
treef896416f82e80f5b57787dda4195354531aebcf5 /Test
parentusers/17445: fix handling of leading zeroes in floating point (diff)
downloadzsh-1869eeb393e2499e9949cc3458cdd74685342540.tar
zsh-1869eeb393e2499e9949cc3458cdd74685342540.tar.gz
zsh-1869eeb393e2499e9949cc3458cdd74685342540.tar.bz2
zsh-1869eeb393e2499e9949cc3458cdd74685342540.tar.lz
zsh-1869eeb393e2499e9949cc3458cdd74685342540.tar.xz
zsh-1869eeb393e2499e9949cc3458cdd74685342540.tar.zst
zsh-1869eeb393e2499e9949cc3458cdd74685342540.zip
30876: fix obscure failures to propagate non-zero status
from optimised simple commands within lists
Diffstat (limited to 'Test')
-rw-r--r--Test/A06assign.ztst4
-rw-r--r--Test/C03traps.ztst11
2 files changed, 13 insertions, 2 deletions
diff --git a/Test/A06assign.ztst b/Test/A06assign.ztst
index 84500f605..9a0a4f0cc 100644
--- a/Test/A06assign.ztst
+++ b/Test/A06assign.ztst
@@ -184,8 +184,8 @@
typeset -A hash
hash=(one 1)
- h+=string
- [[ $h[@] == string ]]
+ hash+=string
+ [[ $hash[@] == string ]]
0:add scalar to association
# tests of var+=(array)
diff --git a/Test/C03traps.ztst b/Test/C03traps.ztst
index 321f5e956..757f75ca4 100644
--- a/Test/C03traps.ztst
+++ b/Test/C03traps.ztst
@@ -388,6 +388,17 @@
>}
>No, really exited
+ (set -e
+ printf "a\nb\n" | while read line
+ do
+ [[ $line = a* ]] || continue
+ ((ctr++))
+ [[ $line = foo ]]
+ done
+ echo "ctr = $ctr"
+ )
+1:ERREXIT in loop with simple commands
+
%clean
rm -f TRAPEXIT