maint: initialize MAINTAINERCLEANFILES
[gzip.git] / tests / init.cfg
blob27515c5ad655d4819a70ae068a802e43b38f5b9a
1 # This file is sourced by init.sh, *before* its initialization.
3 # This goes hand in hand with the "exec 9>&2;" in Makefile.am's
4 # TESTS_ENVIRONMENT definition.
5 stderr_fileno_=9
7 # Like printf with a single argument, but that argument must be a
8 # sequence of four-byte strings \xHH where each H is a hexadecimal byte.
9 hex_printf_()
11   local octal_fmt=$(printf '\\%o' \
12     $(printf '%s\n' "$1" \
13       | sed 's,\\x\([0-9abcdefABCDEF][0-9abcdefABCDEF]\), 0x\1,g'))
14   printf "$octal_fmt"