mirror of
https://github.com/openssl/openssl.git
synced 2025-04-06 20:20:50 +08:00
20-test_enc_more.t: Replace deprecated -ciphers option with -list
[extended tests] Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com> (Merged from https://github.com/openssl/openssl/pull/10242)
This commit is contained in:
parent
d318389eff
commit
40dfb8c705
@ -30,14 +30,14 @@ my $ciphersstatus = undef;
|
||||
my @ciphers =
|
||||
grep(! /wrap|^$|^[^-]/,
|
||||
(map { split /\s+/ }
|
||||
run(app([$cmd, "enc", "-ciphers"]),
|
||||
run(app([$cmd, "enc", "-list"]),
|
||||
capture => 1, statusvar => \$ciphersstatus)));
|
||||
|
||||
plan tests => 2 + scalar @ciphers;
|
||||
|
||||
SKIP: {
|
||||
skip "Problems getting ciphers...", 1 + scalar(@ciphers)
|
||||
unless ok($ciphersstatus, "Running 'openssl enc -ciphers'");
|
||||
unless ok($ciphersstatus, "Running 'openssl enc -list'");
|
||||
unless (ok(copy($testsrc, $plaintext), "Copying $testsrc to $plaintext")) {
|
||||
diag($!);
|
||||
skip "Not initialized, skipping...", scalar(@ciphers);
|
||||
|
Loading…
x
Reference in New Issue
Block a user