summaryrefslogtreecommitdiffstats
path: root/test/recipes
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2020-05-14 15:45:38 +0100
committerMatt Caswell <matt@openssl.org>2020-05-18 09:45:14 +0100
commit88b15ed9a54c591c3962149560d4f851322a54c4 (patch)
treea0911e269e00042373752564843cd702628f7820 /test/recipes
parentd9321c09ea0b1231d9752935e15eb05231ae147a (diff)
Delete the sslprovider test
This was added before the changes to the sslap/ssl_new/ssl_old tests which run those tests with a non-default library context. It no longer adds anything that those tests don't already do, so it can be deleted. This also fixes a number of run-checker build failures which were failing in this test if TLSv1.2 was disabled. Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/11832)
Diffstat (limited to 'test/recipes')
-rw-r--r--test/recipes/90-test_sslprovider.t50
1 files changed, 0 insertions, 50 deletions
diff --git a/test/recipes/90-test_sslprovider.t b/test/recipes/90-test_sslprovider.t
deleted file mode 100644
index 1a2a28557e..0000000000
--- a/test/recipes/90-test_sslprovider.t
+++ /dev/null
@@ -1,50 +0,0 @@
-#! /usr/bin/env perl
-# Copyright 2016-2020 The OpenSSL Project Authors. All Rights Reserved.
-#
-# Licensed under the Apache License 2.0 (the "License"). You may not use
-# this file except in compliance with the License. You can obtain a copy
-# in the file LICENSE in the source distribution or at
-# https://www.openssl.org/source/license.html
-
-
-use OpenSSL::Test::Utils;
-use OpenSSL::Test qw/:DEFAULT srctop_file srctop_dir bldtop_file bldtop_dir/;
-
-BEGIN {
-setup("test_sslprovider");
-}
-
-use lib srctop_dir('Configurations');
-use lib bldtop_dir('.');
-use platform;
-
-plan skip_all => "No TLS/SSL protocols are supported by this OpenSSL build"
- if alldisabled(grep { $_ ne "ssl3" } available_protocols("tls"));
-
-plan tests => 3;
-
-SKIP: {
- skip "Skipping FIPS installation", 1
- if disabled("fips");
-
- ok(run(app(['openssl', 'fipsinstall',
- '-out', bldtop_file('providers', 'fipsmodule.cnf'),
- '-module', bldtop_file('providers', platform->dso('fips')),
- '-provider_name', 'fips', '-mac_name', 'HMAC',
- '-macopt', 'digest:SHA256', '-macopt', 'hexkey:00',
- '-section_name', 'fips_sect'])),
- "fipsinstall");
-}
-
-ok(run(test(["sslprovidertest", srctop_dir("test", "certs"), "default",
- srctop_file("test", "default.cnf")])),
- "running sslprovidertest");
-
-SKIP: {
- skip "Skipping FIPS provider test", 1
- if disabled("fips");
-
- ok(run(test(["sslprovidertest", srctop_dir("test", "certs"), "fips",
- srctop_file("test", "fips.cnf")])),
- "running sslprovidertest");
-}