summaryrefslogtreecommitdiff
path: root/bin/pkill
diff options
context:
space:
mode:
authorEnji Cooper <ngie@FreeBSD.org>2015-02-13 01:07:12 +0000
committerEnji Cooper <ngie@FreeBSD.org>2015-02-13 01:07:12 +0000
commit01f66c0831ac890d9e62e6228f4fe1275cba436f (patch)
tree25cc98e1ca48a5a4441dfea58fd9a504b063e86e /bin/pkill
parent09d73a0662cf5b84c75004b9193b97b7d3047fb1 (diff)
downloadsrc-test-01f66c0831ac890d9e62e6228f4fe1275cba436f.tar.gz
src-test-01f66c0831ac890d9e62e6228f4fe1275cba436f.zip
Call wait to ensure that background processes have died
This is being done to establish parity with pgrep-j_test
Notes
Notes: svn path=/head/; revision=278653
Diffstat (limited to 'bin/pkill')
-rw-r--r--bin/pkill/tests/pgrep-j_test.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/pkill/tests/pgrep-j_test.sh b/bin/pkill/tests/pgrep-j_test.sh
index 4afe28a90edf4..23e586a4ca17e 100644
--- a/bin/pkill/tests/pgrep-j_test.sh
+++ b/bin/pkill/tests/pgrep-j_test.sh
@@ -50,6 +50,7 @@ else
fi
[ -f ${PWD}/${base}_1_1.pid ] && kill $(cat ${PWD}/${base}_1_1.pid)
[ -f ${PWD}/${base}_1_2.pid ] && kill $(cat ${PWD}/${base}_1_2.pid)
+wait
name="pgrep -j any"
sleep_amount=6
@@ -70,6 +71,7 @@ else
fi
[ -f ${PWD}/${base}_2_1.pid ] && kill $(cat ${PWD}/${base}_2_1.pid)
[ -f ${PWD}/${base}_2_2.pid ] && kill $(cat ${PWD}/${base}_2_2.pid)
+wait
name="pgrep -j none"
sleep_amount=7