From 8eb72603aec2007f990f9ff196310b2eea662c6b Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Fri, 8 Jan 2016 16:56:50 -0800 Subject: [PATCH] tests: fix encoding-error test failure to use of printf '\xHH' * tests/encoding-error: Don't rely on printf having support for \xHH hexadecimal. That is not portable. Use \OOO octal, instead. maint: fix typo in NEWS: s/a/an/ --- tests/encoding-error | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/encoding-error b/tests/encoding-error index 2f09c21..4b5fcb5 100755 --- a/tests/encoding-error +++ b/tests/encoding-error @@ -16,7 +16,7 @@ export LC_ALL printf 'Alfred Jones\n' > a || framework_failure_ printf 'John Smith\n' >j || framework_failure_ -printf 'Pedro P\xe9rez\n' >p || framework_failure_ +printf 'Pedro P\351rez\n' >p || framework_failure_ cat a p j >in || framework_failure_ fail=0 -- 2.6.4