hush: fix segfault in ${?:N:M}
[oweals/busybox.git] / shell / hush_test / hush-vars / param_subshell.tests
index 6beaeae66374a4cde04bd1ca6b24d47754fd2029..27fdc5b9b873146f8c3b163343b0cbdc601c5ffc 100755 (executable)
@@ -5,9 +5,11 @@ fi
 echo 1=$1
 { echo 2=$2; }
 { echo 3=$3; } &
-usleep 100000
+# cant use usleep as it isnt standard in $PATH --
+# we fail when testing busybox compiled solely as "hush"
+wait
 ( echo 4=$4 )
 ( echo 5=$5 ) &
-usleep 100000
+wait
 true | echo 6=$6 | cat
 true | { echo 7=$7; } | cat