Skip to content

Commit 24fd561

Browse files
authored
Merge pull request wolfSSL#6099 from bandi13/ocsp-cleanup
Be more aggressive in killing processes
2 parents 0b31d55 + fdb0338 commit 24fd561

3 files changed

+3
-3
lines changed

scripts/ocsp-stapling-with-ca-as-responder.test

+1-1
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ cleanup()
154154
exit_status=$?
155155
for i in $(jobs -pr)
156156
do
157-
kill -s HUP "$i"
157+
kill -s kill "$i"
158158
done
159159
remove_ready_file
160160
rm $CERT_DIR/$test_cnf

scripts/ocsp-stapling.test

+1-1
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ cleanup()
165165
exit_status=$?
166166
for i in $(jobs -pr)
167167
do
168-
kill -s HUP "$i"
168+
kill -s KILL "$i"
169169
done
170170
remove_ready_file
171171
rm $CERT_DIR/$test_cnf

scripts/ocsp-stapling2.test

+1-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ cleanup()
191191
exit_status=$?
192192
for i in $(jobs -pr)
193193
do
194-
kill -s HUP "$i"
194+
kill -s KILL "$i"
195195
done
196196
remove_ready_file
197197
rm $CERT_DIR/$test_cnf

0 commit comments

Comments
 (0)