diff options
author | Denys Vlasenko | 2020-10-24 04:26:43 +0200 |
---|---|---|
committer | Denys Vlasenko | 2020-10-24 04:26:43 +0200 |
commit | e16f7eb5967b9a960f4600c20690af63fb830b60 (patch) | |
tree | 3a07d75e1bb30874324816aa3ec1e7a6cfc898dc /shell/hush_test/hush-signals/signal1.tests | |
parent | b65d6cb00fa0ea51bac4c4e62b576b43ae2c996b (diff) | |
download | busybox-e16f7eb5967b9a960f4600c20690af63fb830b60.zip busybox-e16f7eb5967b9a960f4600c20690af63fb830b60.tar.gz |
hush: output bash-compat killing signal names
This significantly syncronises ash-signals and hush-signals tests.
function old new delta
process_wait_result 449 450 +1
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/hush_test/hush-signals/signal1.tests')
-rwxr-xr-x | shell/hush_test/hush-signals/signal1.tests | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/shell/hush_test/hush-signals/signal1.tests b/shell/hush_test/hush-signals/signal1.tests new file mode 100755 index 0000000..6194346 --- /dev/null +++ b/shell/hush_test/hush-signals/signal1.tests @@ -0,0 +1,28 @@ +trap "echo got signal" USR1 + +for try in 1 2 3 4 5; do + kill -USR1 $$ + sleep 0.2 + echo "sent $try signal" +done & + +# Ensure "wait" has something to wait for +sleep 2 & + +# Ensure we do not execute "trap" below before "kill -USR1" above +# (was getting failure on loaded machine without this) +sleep 0.1 + +sleeping=true +while $sleeping; do + trap + if wait %%; then + echo "sleep completed" + sleeping=false + elif [ $? = 127 ]; then + echo "BUG: no processes to wait for?!" + sleeping=false + else + echo "wait interrupted" + fi +done |