mirror of
git://git.sv.gnu.org/coreutils.git
synced 2026-05-19 08:51:19 +02:00
Make sure that only two of the `H's in \xHHH are consumed
as part of the \x escape sequence.
This commit is contained in:
35
tests/misc/printf-hex
Executable file
35
tests/misc/printf-hex
Executable file
@@ -0,0 +1,35 @@
|
||||
#!/bin/sh
|
||||
# make sure that only two hex. digits are consumed in a \xHHH sequence
|
||||
|
||||
prog=`pwd`/../../src/printf
|
||||
|
||||
if test "$VERBOSE" = yes; then
|
||||
set -x
|
||||
$prog --version
|
||||
fi
|
||||
|
||||
pwd=`pwd`
|
||||
t0=`echo "$0"|sed 's,.*/,,'`.tmp; tmp=$t0/$$
|
||||
trap 'status=$?; cd $pwd; chmod -R u+rwx $t0; rm -rf $t0 && exit $status' 0
|
||||
trap '(exit $?); exit $?' 1 2 13 15
|
||||
|
||||
framework_failure=0
|
||||
mkdir -p $tmp || framework_failure=1
|
||||
cd $tmp || framework_failure=1
|
||||
|
||||
if test $framework_failure = 1; then
|
||||
echo "$0: failure in testing framework" 1>&2
|
||||
(exit 1); exit 1
|
||||
fi
|
||||
|
||||
fail=0
|
||||
|
||||
$prog '\xf73\n' > out || fail=1
|
||||
cat <<\EOF > exp
|
||||
÷3
|
||||
EOF
|
||||
|
||||
cmp out exp || fail=1
|
||||
test $fail = 1 && diff out exp 2> /dev/null
|
||||
|
||||
(exit $fail); exit $fail
|
||||
Reference in New Issue
Block a user