Prefer TAP::Harness over Test::Harness
authorRichard Levitte <levitte@openssl.org>
Wed, 10 May 2017 10:58:36 +0000 (12:58 +0200)
committerRichard Levitte <levitte@openssl.org>
Wed, 10 May 2017 10:58:36 +0000 (12:58 +0200)
commit76e0d0b21cc4e8a879d54f4d78a392826dadb1d1
treeebcb72a49a50bf75ba32be5d1f78c4e4b64aad02
parent03d8e9cb43da5c524e5890a5a51e2c77f1fbd789
Prefer TAP::Harness over Test::Harness

TAP:Harness came along in perl 5.10.1, and since we claim to support
perl 5.10.0 in configuration and testing, we can only load it
conditionally.

The main reason to use TAP::Harness rather than Test::Harness is its
capability to merge stdout and stderr output from the test recipes,
which Test::Harness can't.  The merge gives much more comprehensible
output when testing verbosely.

Reviewed-by: Rich Salz <rsalz@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/3424)
test/run_tests.pl