summaryrefslogtreecommitdiffstats
path: root/test/recipes/04-test_provider.t
diff options
context:
space:
mode:
Diffstat (limited to 'test/recipes/04-test_provider.t')
-rw-r--r--test/recipes/04-test_provider.t9
1 files changed, 8 insertions, 1 deletions
diff --git a/test/recipes/04-test_provider.t b/test/recipes/04-test_provider.t
index 312def7757..1233cc4f93 100644
--- a/test/recipes/04-test_provider.t
+++ b/test/recipes/04-test_provider.t
@@ -12,10 +12,17 @@ use OpenSSL::Test::Utils;
setup("test_provider");
-plan tests => 2;
+plan tests => 3;
ok(run(test(['provider_test'])), "provider_test");
$ENV{"OPENSSL_MODULES"} = bldtop_dir("test");
ok(run(test(['provider_test', '-loaded'])), "provider_test -loaded");
+
+ SKIP: {
+ skip "no module support", 1 if disabled("module");
+
+ ok(run(app(['openssl', 'list', '-provider', 'p_minimal',
+ '-providers', '-verbose'])));
+}