Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

Re: exit does not exit in traps triggered within functions



This was previously discussed in the thread "Bug with traps and exit"
which started in January 2019 and proceeded sporadically through
January 2020.

There was discussion of regression tests but no patch proposed, as far
as I can tell.

On Sun, Oct 25, 2020 at 1:20 PM Michaël Cadilhac <michael@xxxxxxxxxxxxx> wrote:
>
> Hello,
>
> Users at Unix.StackExchange suggested that I forward a question of
> mine appearing here [1], as a potential bug.
>
> Consider these two examples, the second contributed by Stéphane Chazelas:
>
> $ zsh -c 'trap "exit 1; echo X" TERM; f() { kill -TERM $$; echo Y; }; f'
> Y
> $ zsh -c 'trap "exit 1; echo X" EXIT; f() { exit;          echo Y; }; f'
> X
>
> In the first case, the exit in the trap causes the trap to end, but
> f() continues executing—but does not return.  The return value of the
> program is 1.
>
> In the second case, the exit in the trap does not cause the trap to
> end immediately, the trap finishes and does not return, and the return
> value of the program is 0.
>
> As far as I understand, the expected behavior, which BASH displays, is
> for these two scripts to print nothing.
>
> Tested on zsh 5.5.1 and 5.8.
>
> Thanks.
>
> 1: https://unix.stackexchange.com/questions/616217/why-does-zsh-finish-executing-a-function-after-exit-was-called-from-a-trap
>




Messages sorted by: Reverse Date, Date, Thread, Author