mirror of
https://github.com/openssl/openssl.git
synced 2025-02-05 14:10:53 +08:00
The old cipherlist test in ssltest.c only tests the internal order of the cipher table, which is pretty useless. Replace this test with a test that catches inadvertent changes to the default cipherlist. Fix run_tests.pl to correctly filter tests that have "list" in their name. (Also includes a small drive-by fix in .gitignore.) Reviewed-by: Rich Salz <rsalz@openssl.org>
19 lines
466 B
Perl
19 lines
466 B
Perl
#! /usr/bin/perl
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
use OpenSSL::Test::Simple;
|
|
use OpenSSL::Test;
|
|
use OpenSSL::Test::Utils qw(alldisabled available_protocols);
|
|
|
|
setup("test_cipherlist");
|
|
|
|
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");
|