busybox/shell/ash_test/ash-misc/exitcode_trap2.tests
Denys Vlasenko c91950f315 ash,hush: testcase for "exit" without arguments in a trap
hush fails this one

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2020-02-19 12:10:41 +01:00

10 lines
173 B
Plaintext
Executable File

# "exit" in trap should not use last command's exitcode,
# but exitcode on entering the trap.
$THIS_SH -c '
trap "false;exit" term
kill $$ &
(exit 42)
wait
'
echo 42:$?