From: Richard Levitte Date: Sat, 19 Mar 2016 00:01:52 +0000 (+0100) Subject: Don't perform tsa tests if configured "no-ts" X-Git-Tag: OpenSSL_1_1_0-pre5~312 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bec5e4ae0dbacfc29595e5eb007d73180f305cc6;p=openssl Don't perform tsa tests if configured "no-ts" Reviewed-by: Rich Salz --- diff --git a/test/recipes/80-test_tsa.t b/test/recipes/80-test_tsa.t index 477de2db2a..6785698c50 100644 --- a/test/recipes/80-test_tsa.t +++ b/test/recipes/80-test_tsa.t @@ -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;