summary refs log tree commit diff
path: root/Test
diff options
context:
space:
mode:
authorPeter Stephenson <p.stephenson@samsung.com>2018-10-10 12:11:27 +0100
committerPeter Stephenson <p.stephenson@samsung.com>2018-10-10 12:11:27 +0100
commitf19266cf99f8a194add752a764bd5ea13ed215b2 (patch)
treee8b2d26a783986a31e0ab18836042db5ec8bcbb8 /Test
parent0d3a786b7cff90868a586e5e3a491b82589a236d (diff)
downloadzsh-f19266cf99f8a194add752a764bd5ea13ed215b2.tar.gz
zsh-f19266cf99f8a194add752a764bd5ea13ed215b2.tar.xz
zsh-f19266cf99f8a194add752a764bd5ea13ed215b2.zip
unposted: another couple of tests for previous commit.
This tests different code paths as the -c command option exits
in a different fashion from code executed from a script.
Diffstat (limited to 'Test')
-rw-r--r--Test/C03traps.ztst6
1 files changed, 6 insertions, 0 deletions
diff --git a/Test/C03traps.ztst b/Test/C03traps.ztst
index 57daf8ddf..4aebd92b7 100644
--- a/Test/C03traps.ztst
+++ b/Test/C03traps.ztst
@@ -875,6 +875,12 @@ F:Must be tested with a top-level script rather than source or function
   $ZTST_testdir/../Src/zsh -fc 'fn() { exit 0; }; trap fn EXIT; false'
 0:Explicit exit status 0 in exit trap overrides implicit non-zero status
 
+  $ZTST_testdir/../Src/zsh -f <<<'fn() { exit 13; }; trap fn EXIT; false'
+13:Exit status from exit trap, script-like path
+
+  $ZTST_testdir/../Src/zsh -f <<<'fn() { exit 0; }; trap fn EXIT; false'
+0:Explicit exit status overrides implicit: script-like code path
+
 %clean
 
   rm -f TRAPEXIT