Fix race condition in TLSProxy
authorMatt Caswell <matt@openssl.org>
Fri, 3 Nov 2017 10:43:06 +0000 (10:43 +0000)
committerMatt Caswell <matt@openssl.org>
Tue, 7 Nov 2017 10:57:35 +0000 (10:57 +0000)
commit77543471c709089d3845f6bdcf13fa4557ec57dc
tree19cf7e895870824f1b2bc946a500f05a9bd0d16d
parentfb969d09b0a9a1ae4ad27fbc1372aa31ade30667
Fix race condition in TLSProxy

Normally TLSProxy waits for the s_server process to finish before
continuing. However in cases where serverconnects > 1 we need to keep the
s_server process around for a later test so we continue immediately. This
means that TAP test output can end up being printed to stdout at the same
time as s_server is printing stuff. This confuses the test runner and can
cause spurious test failures. This commit introduces a small delay in cases
where serverconnects > 1 in order to give s_server enough time to finish
what it was doing before we continue to the next test.

Fixes #4129

Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/4661)
util/perl/TLSProxy/Proxy.pm