Don't perform tsa tests if configured "no-ts"

Reviewed-by: Rich Salz <rsalz@openssl.org>
This commit is contained in:
Richard Levitte 2016-03-19 01:01:52 +01:00
parent 1c0e7dadab
commit bec5e4ae0d

View file

@ -7,9 +7,13 @@ use POSIX;
use File::Spec::Functions qw/splitdir curdir catfile/;
use File::Compare;
use OpenSSL::Test qw/:DEFAULT cmdstr srctop_file/;
use OpenSSL::Test::Utils;
setup("test_tsa");
plan skip_all => "TS is not supported by this OpenSSL build"
if disabled("ts");
# All these are modified inside indir further down. They need to exist
# here, however, to be available in all subroutines.
my $testtsa;