]> git.ipfire.org Git - thirdparty/git.git/commitdiff
t0028: eliminate non-standard usage of printf
authorDoan Tran Cong Danh <congdanhqx@gmail.com>
Thu, 7 Nov 2019 02:56:12 +0000 (09:56 +0700)
committerJunio C Hamano <gitster@pobox.com>
Thu, 7 Nov 2019 06:13:54 +0000 (15:13 +0900)
man 1p printf:
   In addition to the escape sequences shown in the Base Definitions
   volume of POSIX.1‐2008, Chapter 5, File Format Notation ('\\',
   '\a', '\b', '\f', '\n', '\r', '\t', '\v'), "\ddd", where ddd is a
   one, two, or three-digit octal number, shall be written as a byte
   with the numeric value specified by the octal number.

printf '\xfe\xff' is an extension of some shell.
Dash, a popular yet simple shell, do not implement this extension.

This wasn't caught by most people running the tests, even though
common shells like dash don't handle hex escapes, because their
systems don't trigger the NO_UTF16_BOM prereq. But systems with musl
libc do; when combined with dash, the test fails.

Correct it.

Signed-off-by: Doan Tran Cong Danh <congdanhqx@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t0028-working-tree-encoding.sh

index 7aa0945d8d711d14739da69510b835fcc0e8edb3..bfc4fb9af5f274fe9adcd631d730b74ed368551a 100755 (executable)
@@ -17,7 +17,7 @@ test_lazy_prereq NO_UTF32_BOM '
 write_utf16 () {
        if test_have_prereq NO_UTF16_BOM
        then
-               printf '\xfe\xff'
+               printf '\376\377'
        fi &&
        iconv -f UTF-8 -t UTF-16
 }
@@ -25,7 +25,7 @@ write_utf16 () {
 write_utf32 () {
        if test_have_prereq NO_UTF32_BOM
        then
-               printf '\x00\x00\xfe\xff'
+               printf '\0\0\376\377'
        fi &&
        iconv -f UTF-8 -t UTF-32
 }