From: Eugene Syromiatnikov Date: Thu, 18 Sep 2025 00:29:10 +0000 (+0200) Subject: test/recipes/25-test_verify.t: correct the number of skipped tests on Win/VMS X-Git-Tag: openssl-3.2.6~33 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=56af458439efc5d6e071c614dffffff0d3e71cbf;p=thirdparty%2Fopenssl.git test/recipes/25-test_verify.t: correct the number of skipped tests on Win/VMS On 3.5, there is one test fewer to be skipped due to absence of support of colon in filenames after the commit b3e7dad7ac08 "Fix test/recipes/25-test_verify.t [3.5]", provide the correct number in the skip call. Fixes: b3e7dad7ac08 "Fix test/recipes/25-test_verify.t [3.5]" Signed-off-by: Eugene Syromiatnikov Reviewed-by: Neil Horman Reviewed-by: Paul Dale Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/28591) (cherry picked from commit b18f44902c5c48080a06c63972a13f8cb6d5c5d2) --- diff --git a/test/recipes/25-test_verify.t b/test/recipes/25-test_verify.t index 7c53c39b589..e60046b183e 100644 --- a/test/recipes/25-test_verify.t +++ b/test/recipes/25-test_verify.t @@ -601,7 +601,7 @@ ok(vfy_root("-CAstore", $rootcert, "-CAfile", $rootcert), "CAfile and existing C ok(!vfy_root("-CAstore", "non-existing", "-CAfile", $rootcert), "CAfile and non-existing CAstore"); SKIP: { - skip "file names with colons aren't supported on Windows and VMS", 2 + skip "file names with colons aren't supported on Windows and VMS", 1 if $^O =~ /^(MSWin32|VMS)$/; my $foo_file = "foo:cert.pem"; copy($rootcert, $foo_file);