TLSProxy::Proxy: don't waste time redirecting STDOUT and STDERR
authorRichard Levitte <levitte@openssl.org>
Wed, 17 Jan 2018 20:27:33 +0000 (21:27 +0100)
committerRichard Levitte <levitte@openssl.org>
Wed, 17 Jan 2018 21:38:54 +0000 (22:38 +0100)
commit634c1a6b752830d6631a9a8e7884b2f600aca696
tree2af60771c034784fb652ba21520588cc7f3abf92
parentfa9dc509cccbe30b48ad7f4f2e23610a182a23c3
TLSProxy::Proxy: don't waste time redirecting STDOUT and STDERR

On Windows, it seems that doing so in a forked (pseudo-)process
sometimes affects the parent, and thereby hides all the results that
are supposed to be seen by the running test framework (the "ok" and
"not ok" lines).

It turns out that our redirection isn't necessary, as the test
framework seems to swallow it all in non-verbose mode anyway.
It's possible that we did need this at some point, but the framework
has undergone some refinement since then...

Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/5100)

(cherry picked from commit 825038d8c36075488922617e48fc4782afe871d1)
util/perl/TLSProxy/Proxy.pm