From: Dr. David von Oheimb Date: Sat, 26 Jul 2025 08:46:21 +0000 (+0200) Subject: 25-test_verify.t: fix partly case-sensitive matching for Windows OS: s/MsWin32/MSWin32/ X-Git-Tag: openssl-3.0.18~26 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ed625fdde8edd4c429f8b8c653d657967acfdf1f;p=thirdparty%2Fopenssl.git 25-test_verify.t: fix partly case-sensitive matching for Windows OS: s/MsWin32/MSWin32/ Fixes #27984 Reviewed-by: Matt Caswell Reviewed-by: Tom Cosgrove Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/28098) (cherry picked from commit ee16664f6a1887048638e3d645fac38fb9c7f0d2) --- diff --git a/test/recipes/25-test_verify.t b/test/recipes/25-test_verify.t index 7bada5186d7..1c025ac94fb 100644 --- a/test/recipes/25-test_verify.t +++ b/test/recipes/25-test_verify.t @@ -537,9 +537,10 @@ ok(vfy_root("-CAfile", $rootcert), "CAfile"); ok(vfy_root("-CAstore", $rootcert), "CAstore"); ok(vfy_root("-CAstore", $rootcert, "-CAfile", $rootcert), "CAfile and existing CAstore"); 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 - if $^O =~ /^(MsWin32|VMS)$/; + if $^O =~ /^(MSWin32|VMS)$/; my $foo_file = "foo:cert.pem"; copy($rootcert, $foo_file); ok(vfy_root("-CAstore", $foo_file), "CAstore foo:file");