remove dependency on xxd

Fixes #3797
This commit is contained in:
Kurtis Rader
2017-01-31 18:44:02 -08:00
parent 2b13472419
commit 44cfe3e340
8 changed files with 43 additions and 26 deletions

View File

@@ -28,11 +28,11 @@ printf 'a\cb'
echo
# Bogus printf specifier, should produce no stdout
printf "%5" 10 ^ /dev/null
printf "%5" 10 ^/dev/null
# Octal escapes produce literal bytes, not characters
# \376 is 0xFE
printf '\376' | xxd -p
printf '\376' | display_bytes
# Verify that floating point conversions and output work correctly with
# different combinations of locales and floating point strings. See issue