hush: make "exit" in trap use pre-trap exitcode - fix for nested trap
function old new delta check_and_run_traps 276 278 +2 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
2
shell/hush_test/hush-misc/exitcode_trap6.right
Normal file
2
shell/hush_test/hush-misc/exitcode_trap6.right
Normal file
@@ -0,0 +1,2 @@
|
||||
INT
|
||||
42:42
|
11
shell/hush_test/hush-misc/exitcode_trap6.tests
Executable file
11
shell/hush_test/hush-misc/exitcode_trap6.tests
Executable file
@@ -0,0 +1,11 @@
|
||||
# "exit" in trap should not use last command's exitcode,
|
||||
# but exitcode on entering the trap.
|
||||
# Nested trap should not interfere with this.
|
||||
$THIS_SH -c '
|
||||
trap "echo INT" int
|
||||
trap "kill -int $$;exit" term
|
||||
kill $$ &
|
||||
(exit 42)
|
||||
wait
|
||||
'
|
||||
echo 42:$?
|
Reference in New Issue
Block a user