ash,hush: testcase for "exit" without arguments in a trap

hush fails this one

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko 2020-02-19 12:10:41 +01:00
parent 23bc562a05
commit c91950f315
4 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1 @@
42:42

View File

@ -0,0 +1,9 @@
# "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:$?

View File

@ -0,0 +1 @@
42:42

View File

@ -0,0 +1,9 @@
# "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:$?