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.6.0~52 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3af97cd9142b511dbb1fcafd1f640221312c5555;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 f3fae34b47e..f9a0b879513 100644 --- a/test/recipes/25-test_verify.t +++ b/test/recipes/25-test_verify.t @@ -602,9 +602,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");