]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Test openssl ecparam -list_curves
authorTomas Mraz <tomas@openssl.org>
Wed, 22 Jan 2025 18:52:22 +0000 (19:52 +0100)
committerTomas Mraz <tomas@openssl.org>
Thu, 13 Feb 2025 10:19:02 +0000 (11:19 +0100)
Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/26525)

test/recipes/15-test_ecparam.t

index 869ff301ea7a5a8fddc7e565ea0527b6bd365e47..72e625c4769bd6e0cd42b88d056d9d0b9c60629a 100644 (file)
@@ -30,7 +30,7 @@ if (disabled("sm2")) {
     @valid = grep { !/sm2-.*\.pem/} @valid;
 }
 
-plan tests => 13;
+plan tests => 14;
 
 sub checkload {
     my $files = shift; # List of files
@@ -198,3 +198,5 @@ subtest "Check loading of fips and non-fips params" => sub {
 
     $ENV{OPENSSL_CONF} = $defaultconf;
 };
+
+ok(run(app(['openssl', 'ecparam', '-list_curves'])), "Test -list_curves");