* tests/printf/printf-quote.sh: Add a test case for
https://bugs.debian.org/992161 which was fixed with
gnulib commit
v0.1-7339-g07b31a9465
prog='env printf'
# Equivalent output to ls --quoting=shell-escape
-$prog '%q\n' '' "'" a 'a b' '~a' 'a~' "$($prog %b 'a\r')" > out
+$prog '%q\n' '' "'" a 'a b' '~a' 'a~' \
+ "$($prog %b 'a\r')" "$($prog "\001'\001")" > out
cat <<\EOF > exp || framework_failure_
''
"'"
'~a'
a~
'a'$'\r'
+''$'\001'\'''$'\001'
EOF
compare exp out || fail=1