diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-01-04 11:37:09 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-01-04 11:37:09 +0100 |
commit | a4899efd03d2fdaaf3f581d89a7a4844832d3fbb (patch) | |
tree | 8fab20ee4e6503866945de3bb400eadf9618b7ac /shell/hush_test | |
parent | 4168fdd8e6f5ad4d41a30a2350dbd635cc0fa6e1 (diff) | |
download | busybox-w32-a4899efd03d2fdaaf3f581d89a7a4844832d3fbb.tar.gz busybox-w32-a4899efd03d2fdaaf3f581d89a7a4844832d3fbb.tar.bz2 busybox-w32-a4899efd03d2fdaaf3f581d89a7a4844832d3fbb.zip |
hush: fix exitcodes of killed processes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/hush_test')
-rw-r--r-- | shell/hush_test/hush-misc/sig_exitcode.right | 5 | ||||
-rwxr-xr-x | shell/hush_test/hush-misc/sig_exitcode.tests | 9 |
2 files changed, 14 insertions, 0 deletions
diff --git a/shell/hush_test/hush-misc/sig_exitcode.right b/shell/hush_test/hush-misc/sig_exitcode.right new file mode 100644 index 000000000..d5f000a08 --- /dev/null +++ b/shell/hush_test/hush-misc/sig_exitcode.right | |||
@@ -0,0 +1,5 @@ | |||
1 | KILL | ||
2 | 137:137 | ||
3 | KILL | ||
4 | 0:0 | ||
5 | Done | ||
diff --git a/shell/hush_test/hush-misc/sig_exitcode.tests b/shell/hush_test/hush-misc/sig_exitcode.tests new file mode 100755 index 000000000..7879dc854 --- /dev/null +++ b/shell/hush_test/hush-misc/sig_exitcode.tests | |||
@@ -0,0 +1,9 @@ | |||
1 | exec 2>&1 | ||
2 | |||
3 | $THIS_SH -c 'kill -9 $$' | ||
4 | echo 137:$? | ||
5 | |||
6 | ! $THIS_SH -c 'kill -9 $$' | ||
7 | echo 0:$? | ||
8 | |||
9 | echo Done | ||