diff options
Diffstat (limited to 'Test/C03traps.ztst')
-rw-r--r-- | Test/C03traps.ztst | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/Test/C03traps.ztst b/Test/C03traps.ztst index 3a65b2876..0faec02e9 100644 --- a/Test/C03traps.ztst +++ b/Test/C03traps.ztst @@ -556,6 +556,33 @@ F:Must be tested with a top-level script rather than source or function 1:ERRETURN with "!" and a following false >before + fn() { + emulate -L zsh + setopt errreturn + print before + ! if true; then + false + fi + print after + } + fn +0:ERRETURN with "!" suppressed inside complex structure +>before +>after + + fn() { + emulate -L zsh + setopt errreturn + print before + if true; then + false + fi + print after + } + fn +1:ERRETURN with no "!" suppression (control case) +>before + %clean rm -f TRAPEXIT |