diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2020-02-19 12:10:41 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2020-02-19 12:10:41 +0100 |
commit | c91950f31532febe34e00ab20d3e5f462d9daa52 (patch) | |
tree | f2621d022921045b602f5533b703849fc171f973 /shell | |
parent | 23bc562a0556d1c0ddad4252fa8d46c863b5fa88 (diff) | |
download | busybox-w32-c91950f31532febe34e00ab20d3e5f462d9daa52.tar.gz busybox-w32-c91950f31532febe34e00ab20d3e5f462d9daa52.tar.bz2 busybox-w32-c91950f31532febe34e00ab20d3e5f462d9daa52.zip |
ash,hush: testcase for "exit" without arguments in a trap
hush fails this one
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ash_test/ash-misc/exitcode_trap2.right | 1 | ||||
-rwxr-xr-x | shell/ash_test/ash-misc/exitcode_trap2.tests | 9 | ||||
-rw-r--r-- | shell/hush_test/hush-misc/exitcode_trap2.right | 1 | ||||
-rwxr-xr-x | shell/hush_test/hush-misc/exitcode_trap2.tests | 9 |
4 files changed, 20 insertions, 0 deletions
diff --git a/shell/ash_test/ash-misc/exitcode_trap2.right b/shell/ash_test/ash-misc/exitcode_trap2.right new file mode 100644 index 000000000..6644d86bf --- /dev/null +++ b/shell/ash_test/ash-misc/exitcode_trap2.right | |||
@@ -0,0 +1 @@ | |||
42:42 | |||
diff --git a/shell/ash_test/ash-misc/exitcode_trap2.tests b/shell/ash_test/ash-misc/exitcode_trap2.tests new file mode 100755 index 000000000..f259774bf --- /dev/null +++ b/shell/ash_test/ash-misc/exitcode_trap2.tests | |||
@@ -0,0 +1,9 @@ | |||
1 | # "exit" in trap should not use last command's exitcode, | ||
2 | # but exitcode on entering the trap. | ||
3 | $THIS_SH -c ' | ||
4 | trap "false;exit" term | ||
5 | kill $$ & | ||
6 | (exit 42) | ||
7 | wait | ||
8 | ' | ||
9 | echo 42:$? | ||
diff --git a/shell/hush_test/hush-misc/exitcode_trap2.right b/shell/hush_test/hush-misc/exitcode_trap2.right new file mode 100644 index 000000000..6644d86bf --- /dev/null +++ b/shell/hush_test/hush-misc/exitcode_trap2.right | |||
@@ -0,0 +1 @@ | |||
42:42 | |||
diff --git a/shell/hush_test/hush-misc/exitcode_trap2.tests b/shell/hush_test/hush-misc/exitcode_trap2.tests new file mode 100755 index 000000000..f259774bf --- /dev/null +++ b/shell/hush_test/hush-misc/exitcode_trap2.tests | |||
@@ -0,0 +1,9 @@ | |||
1 | # "exit" in trap should not use last command's exitcode, | ||
2 | # but exitcode on entering the trap. | ||
3 | $THIS_SH -c ' | ||
4 | trap "false;exit" term | ||
5 | kill $$ & | ||
6 | (exit 42) | ||
7 | wait | ||
8 | ' | ||
9 | echo 42:$? | ||