The scope of each test case is a single connection attempt. BoringSSL and Cloudflare-Go servers quit after one connection attempt, but the NSS and rustls servers listen forever. This change ensures that all of the servers run forever so that the code that calls docker-compose up is responsible for timing out.
Partially addresses #27.
The scope of each test case is a single connection attempt. BoringSSL and Cloudflare-Go servers quit after one connection attempt, but the NSS and rustls servers listen forever. This change ensures that all of the servers run forever so that the code that calls
docker-compose up
is responsible for timing out.