summaryrefslogtreecommitdiff
path: root/Test
diff options
context:
space:
mode:
Diffstat (limited to 'Test')
-rw-r--r--Test/C03traps.ztst21
1 files changed, 21 insertions, 0 deletions
diff --git a/Test/C03traps.ztst b/Test/C03traps.ztst
index 7bc0b486d..759401225 100644
--- a/Test/C03traps.ztst
+++ b/Test/C03traps.ztst
@@ -756,6 +756,27 @@ F:Must be tested with a top-level script rather than source or function
>''
>hello
+ $ZTST_testdir/../Src/zsh -f =(<<<"
+ trap handler EXIT
+ handler() {
+ echoa
+ echo b
+ }
+ echoa() {
+ echo a
+ }
+ exit0() {
+ exit
+ }
+ main() {
+ exit0
+ }
+ main
+ ")
+0:No early exit from nested function in EXIT trap.
+>a
+>b
+
%clean
rm -f TRAPEXIT