summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-03-19 01:01:52 +0100
committerRichard Levitte <levitte@openssl.org>2016-03-19 01:25:37 +0100
commitbec5e4ae0dbacfc29595e5eb007d73180f305cc6 (patch)
tree0f75b44d5def751f4b5e142ae5df8f85c91ab3c3 /test
parent1c0e7dadab1f51cf39367d9d2ff6690a68854755 (diff)
Don't perform tsa tests if configured "no-ts"
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'test')
-rw-r--r--test/recipes/80-test_tsa.t4
1 files changed, 4 insertions, 0 deletions
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;