summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2022-06-10 19:50:01 +0200
committerTomas Mraz <tomas@openssl.org>2022-06-16 15:43:58 +0200
commite3ba938b584275839dda404d846abdb06a88693f (patch)
treecc86d4121c12f701c0676395c1e727b191fa4af6 /test
parent809526a06c1305d67a8f231ca15cd27ec800efce (diff)
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 <todd.short@me.com> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/18531)
Diffstat (limited to 'test')
-rw-r--r--test/recipes/02-test_localetest.t2
1 files changed, 1 insertions, 1 deletions
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)$/;