From: Richard Levitte Date: Fri, 10 Jun 2022 17:50:01 +0000 (+0200) Subject: test/recipes/*.t: setup() doesn't play well with spaces in the argument X-Git-Tag: openssl-3.0.4~11 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=fff244051763165886e9c0777f1c2bce71085047 test/recipes/*.t: setup() doesn't play well with spaces in the argument The argument translates into a directory name, and there are platforms that don't allow spaces (at least not easily), which makes the test fail. This modifies it to conform a bit better to the usual form for that arg. Reviewed-by: Todd Short Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/18531) (cherry picked from commit e3ba938b584275839dda404d846abdb06a88693f) --- diff --git a/test/recipes/02-test_localetest.t b/test/recipes/02-test_localetest.t index d46cb0ffdf..9564d904f4 100644 --- a/test/recipes/02-test_localetest.t +++ b/test/recipes/02-test_localetest.t @@ -10,7 +10,7 @@ use OpenSSL::Test; use OpenSSL::Test::Utils; -setup("locale tests"); +setup("test_locale"); plan skip_all => "Locale tests not available on Windows or VMS" if $^O =~ /^(VMS|MSWin32)$/;