From 18cb0221b9352adc6507adbcec301b49546cbc3e Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Mon, 21 Mar 2016 11:07:14 +0000 Subject: [PATCH] Skip the CMS tests if CMS is disabled MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This fixes the no-cms compile time option. Reviewed-by: Emilia Käsper --- test/recipes/80-test_cms.t | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/recipes/80-test_cms.t b/test/recipes/80-test_cms.t index 21926d430e..645f37a7de 100644 --- a/test/recipes/80-test_cms.t +++ b/test/recipes/80-test_cms.t @@ -11,6 +11,9 @@ use OpenSSL::Test::Utils; setup("test_cms"); +plan skip_all => "CMS is not supported by this OpenSSL build" + if disabled("cms"); + my $smdir = srctop_dir("test", "smime-certs"); my $smcont = srctop_file("test", "smcont.txt"); my ($no_des, $no_dh, $no_dsa, $no_ec, $no_ec2m, $no_rc2, $no_zlib) -- 2.40.0