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:
parent
23bc562a05
commit
c91950f315
1
shell/ash_test/ash-misc/exitcode_trap2.right
Normal file
1
shell/ash_test/ash-misc/exitcode_trap2.right
Normal file
@ -0,0 +1 @@
|
||||
42:42
|
9
shell/ash_test/ash-misc/exitcode_trap2.tests
Executable file
9
shell/ash_test/ash-misc/exitcode_trap2.tests
Executable 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:$?
|
1
shell/hush_test/hush-misc/exitcode_trap2.right
Normal file
1
shell/hush_test/hush-misc/exitcode_trap2.right
Normal file
@ -0,0 +1 @@
|
||||
42:42
|
9
shell/hush_test/hush-misc/exitcode_trap2.tests
Executable file
9
shell/hush_test/hush-misc/exitcode_trap2.tests
Executable 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:$?
|
Loading…
Reference in New Issue
Block a user