From 7cd23606c5d678378c84a2e6bc9915486679f9cf Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Sat, 12 Nov 2011 09:58:28 +0100 Subject: tests: fix high-bit-range test failure on OSF/1 5.1 * tests/high-bit-range: Use octal escape instead of hexadecimal escape sequence. --- tests/high-bit-range | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/high-bit-range b/tests/high-bit-range index d150633f..4a1d3334 100755 --- a/tests/high-bit-range +++ b/tests/high-bit-range @@ -20,8 +20,8 @@ fail=0 -printf '\x81\n' > in || framework_failure_ -grep "$(printf '[\x81]')" in > out || fail=1 +printf '\201\n' > in || framework_failure_ +grep "$(printf '[\201]')" in > out || fail=1 compare out in || fail=1 -- cgit v1.2.1