1e1051a39Sopenharmony_ci#! /usr/bin/env perl
2e1051a39Sopenharmony_ci#
3e1051a39Sopenharmony_ci# Copyright 2016-2021 The OpenSSL Project Authors. All Rights Reserved.
4e1051a39Sopenharmony_ci#
5e1051a39Sopenharmony_ci# Licensed under the Apache License 2.0 (the "License").  You may not use
6e1051a39Sopenharmony_ci# this file except in compliance with the License.  You can obtain a copy
7e1051a39Sopenharmony_ci# in the file LICENSE in the source distribution or at
8e1051a39Sopenharmony_ci# https://www.openssl.org/source/license.html
9e1051a39Sopenharmony_ci
10e1051a39Sopenharmony_ci
11e1051a39Sopenharmony_ciuse strict;
12e1051a39Sopenharmony_ciuse warnings;
13e1051a39Sopenharmony_ci
14e1051a39Sopenharmony_ciuse OpenSSL::Test::Simple;
15e1051a39Sopenharmony_ciuse OpenSSL::Test qw(:DEFAULT openssl_versions);
16e1051a39Sopenharmony_ciuse OpenSSL::Test::Utils qw(alldisabled available_protocols);
17e1051a39Sopenharmony_ci
18e1051a39Sopenharmony_cisetup("test_cipherlist");
19e1051a39Sopenharmony_ci
20e1051a39Sopenharmony_cimy ($build_version, $library_version) = openssl_versions();
21e1051a39Sopenharmony_ciplan skip_all =>
22e1051a39Sopenharmony_ci    "This test recipe isn't supported when doing regression testing"
23e1051a39Sopenharmony_ci    if $build_version ne $library_version;
24e1051a39Sopenharmony_ci
25e1051a39Sopenharmony_cimy $no_anytls = alldisabled(available_protocols("tls"));
26e1051a39Sopenharmony_ci
27e1051a39Sopenharmony_ci# If we have no protocols, then we also have no supported ciphers.
28e1051a39Sopenharmony_ciplan skip_all => "No SSL/TLS protocol is supported by this OpenSSL build."
29e1051a39Sopenharmony_ci    if $no_anytls;
30e1051a39Sopenharmony_ci
31e1051a39Sopenharmony_cisimple_test("test_cipherlist", "cipherlist_test", "cipherlist");
32