gnuplot: update to 6.0.2
[oi-userland.git] / components / shell / bash / patches / solaris-017.printf2.sub.patch
blob5ac35022beeca1446dc56388630123bab5027009
1 diff -Nru bash-5.2.orig/tests/printf2.sub bash-5.2/tests/printf2.sub
2 --- tests/printf2.sub 2022-09-26 19:44:37.995231398 +0000
3 +++ tests/printf2.sub 2022-09-26 19:45:11.358414301 +0000
4 @@ -1,12 +1,14 @@
5 unset LC_ALL LC_CTYPE
7 export LANG=C
8 +export LC_ALL=C
9 case $(printf %d\\n \'A) in
10 65) ;;
11 *) echo "printf2.sub: character conversion failed" >&2 ;;
12 esac
14 export LANG=en_US.UTF-8
15 +export LC_ALL=en_US.UTF-8
16 case $(printf %d\\n \'À) in
17 192) exit 0;;
18 *) echo "printf2.sub: multibyte character conversion failed" >&2 ; exit 2 ;;