From b052fbf151106a4f47cac7fdf0ffff983decb773 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Thu, 1 Sep 2022 19:24:10 +0100 Subject: gentoo auto-resync : 01:09:2022 - 19:24:10 --- .../zsh/files/zsh-5.9-musl-V09datetime-test-fix.patch | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 app-shells/zsh/files/zsh-5.9-musl-V09datetime-test-fix.patch (limited to 'app-shells/zsh/files') diff --git a/app-shells/zsh/files/zsh-5.9-musl-V09datetime-test-fix.patch b/app-shells/zsh/files/zsh-5.9-musl-V09datetime-test-fix.patch new file mode 100644 index 000000000000..6f9fa4458a29 --- /dev/null +++ b/app-shells/zsh/files/zsh-5.9-musl-V09datetime-test-fix.patch @@ -0,0 +1,15 @@ +# On musl strftime '%@' returns new line, so we include to check for that too +# Closes: https://bugs.gentoo.org/833981 +--- a/Test/V09datetime.ztst ++++ b/Test/V09datetime.ztst +@@ -79,8 +79,8 @@ + >1973^@03^@03 + + # We assume '%@' is not a valid format on any OSs. +-# The result can be '%@' (Linux), '@' (BSDs) or an error (Cygwin). +- [[ $(strftime '%@' 0 2> /dev/null) == (%|)@ || $? != 0 ]] ++# The result can be '%@' (Linux), '\n' (Linux with musl libc) '@', (BSDs) or an error (Cygwin). ++ [[ $(strftime '%@' 0 2> /dev/null) == (%|)@ || $? != 0 || $'\n' ]] + 0:bad format specifier + + # This test may fail at 23:59:59.xxx on New Year's Eve :/ -- cgit v1.2.3