diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-10-09 23:08:28 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-10-09 23:08:28 +0200 |
commit | 3dc4a3e4dce20988aa7691b4409d95ad9c32c923 (patch) | |
tree | 7f6a17401322da58efb578c07e374411f3a0e43f | |
parent | 69d1f45c16f634356562edb14f2b61015a46e4b4 (diff) | |
download | busybox-3dc4a3e4dce20988aa7691b4409d95ad9c32c923.tar.gz |
ash: make one testsuite entry more robust
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rwxr-xr-x | shell/ash_test/ash-signals/signal1.tests | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/shell/ash_test/ash-signals/signal1.tests b/shell/ash_test/ash-signals/signal1.tests index 098d21fd4..3c424731a 100755 --- a/shell/ash_test/ash-signals/signal1.tests +++ b/shell/ash_test/ash-signals/signal1.tests @@ -6,8 +6,13 @@ for try in 1 2 3 4 5; do echo "sent $try signal" done & +# Ensure "wait" have 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 |