From eeefe043ec2bbc35d5c5478fa025a53ac0ca9516 Mon Sep 17 00:00:00 2001 From: Daniel Pouzzner Date: Wed, 16 Dec 2020 17:31:53 -0600 Subject: [PATCH] scripts/: nix `timeout` wrappers in ocsp-stapling.test and ocsp-stapling2.test, for portability. --- scripts/ocsp-stapling.test | 2 +- scripts/ocsp-stapling2.test | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/ocsp-stapling.test b/scripts/ocsp-stapling.test index 0d93dda92..576e81145 100755 --- a/scripts/ocsp-stapling.test +++ b/scripts/ocsp-stapling.test @@ -226,7 +226,7 @@ port3=$(get_first_free_port $((port2 + 1))) # test interop fail case ready_file=$PWD/wolf_ocsp_readyF$$ printf '%s\n' "ready file: $ready_file" -timeout 60 ./examples/server/server -b -p $port1 -o -R $ready_file & +./examples/server/server -b -p $port1 -o -R $ready_file & wolf_pid=$! wait_for_readyFile $ready_file $wolf_pid $port1 if [ ! -f $ready_file ]; then diff --git a/scripts/ocsp-stapling2.test b/scripts/ocsp-stapling2.test index c8787ec7d..55c0c716a 100755 --- a/scripts/ocsp-stapling2.test +++ b/scripts/ocsp-stapling2.test @@ -425,7 +425,7 @@ fi printf '%s\n\n' "Test successful" printf '%s\n\n' "------------- TEST CASE 8 SHOULD REVOKE ----------------------" remove_single_rF $ready_file5 -timeout 60 ./examples/server/server -c certs/ocsp/server4-cert.pem \ +./examples/server/server -c certs/ocsp/server4-cert.pem \ -k certs/ocsp/server4-key.pem -R $ready_file5 \ -p $port5 -H loadSSL & server_pid5=$!