2021-08-19 19:05:15 +08:00
|
|
|
#! /usr/bin/env perl
|
2016-06-01 23:26:40 +08:00
|
|
|
#
|
2021-09-07 19:29:33 +08:00
|
|
|
# Copyright 2016-2021 The OpenSSL Project Authors. All Rights Reserved.
|
2016-06-01 23:26:40 +08:00
|
|
|
#
|
2018-12-06 20:05:25 +08:00
|
|
|
# Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-06-01 23:26:40 +08:00
|
|
|
# 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
|
|
|
|
|
2016-04-06 22:03:06 +08:00
|
|
|
|
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
|
|
|
|
use OpenSSL::Test::Simple;
|
2018-03-26 17:00:05 +08:00
|
|
|
use OpenSSL::Test qw(:DEFAULT openssl_versions);
|
2016-04-06 22:03:06 +08:00
|
|
|
use OpenSSL::Test::Utils qw(alldisabled available_protocols);
|
|
|
|
|
|
|
|
setup("test_cipherlist");
|
|
|
|
|
2018-03-26 17:00:05 +08:00
|
|
|
my ($build_version, $library_version) = openssl_versions();
|
|
|
|
plan skip_all =>
|
|
|
|
"This test recipe isn't supported when doing regression testing"
|
Switch to MAJOR.MINOR.PATCH versioning and version 3.0.0-dev
We're strictly use version numbers of the form MAJOR.MINOR.PATCH.
Letter releases are things of days past.
The most central change is that we now express the version number with
three macros, one for each part of the version number:
OPENSSL_VERSION_MAJOR
OPENSSL_VERSION_MINOR
OPENSSL_VERSION_PATCH
We also provide two additional macros to express pre-release and build
metadata information (also specified in semantic versioning):
OPENSSL_VERSION_PRE_RELEASE
OPENSSL_VERSION_BUILD_METADATA
To get the library's idea of all those values, we introduce the
following functions:
unsigned int OPENSSL_version_major(void);
unsigned int OPENSSL_version_minor(void);
unsigned int OPENSSL_version_patch(void);
const char *OPENSSL_version_pre_release(void);
const char *OPENSSL_version_build_metadata(void);
Additionally, for shared library versioning (which is out of scope in
semantic versioning, but that we still need):
OPENSSL_SHLIB_VERSION
We also provide a macro that contains the release date. This is not
part of the version number, but is extra information that we want to
be able to display:
OPENSSL_RELEASE_DATE
Finally, also provide the following convenience functions:
const char *OPENSSL_version_text(void);
const char *OPENSSL_version_text_full(void);
The following macros and functions are deprecated, and while currently
existing for backward compatibility, they are expected to disappear:
OPENSSL_VERSION_NUMBER
OPENSSL_VERSION_TEXT
OPENSSL_VERSION
OpenSSL_version_num()
OpenSSL_version()
Also, this function is introduced to replace OpenSSL_version() for all
indexes except for OPENSSL_VERSION:
OPENSSL_info()
For configuration, the option 'newversion-only' is added to disable all
the macros and functions that are mentioned as deprecated above.
Reviewed-by: Tim Hudson <tjh@openssl.org>
Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/7724)
2018-09-27 21:56:35 +08:00
|
|
|
if $build_version ne $library_version;
|
2018-03-26 17:00:05 +08:00
|
|
|
|
2016-04-06 22:03:06 +08:00
|
|
|
my $no_anytls = alldisabled(available_protocols("tls"));
|
|
|
|
|
|
|
|
# If we have no protocols, then we also have no supported ciphers.
|
|
|
|
plan skip_all => "No SSL/TLS protocol is supported by this OpenSSL build."
|
|
|
|
if $no_anytls;
|
|
|
|
|
|
|
|
simple_test("test_cipherlist", "cipherlist_test", "cipherlist");
|