ptx: fix an invalid heap reference with short --width
[coreutils.git] / tests / misc / printf.sh
blobcb7a57f035648741eff78ae72974e203064ee032
1 #!/bin/sh
2 # basic tests for printf
4 # Copyright (C) 2002-2016 Free Software Foundation, Inc.
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
19 prog='env printf'
21 . "${srcdir=.}/tests/init.sh"; path_prepend_ ./src
22 print_ver_ printf
24 getlimits_
27 # Verify the 3 methods of specifying "Escape":
28 printf '%s\n' . . . | tr . '\033' > exp
29 $prog '\x1b\n\33\n\e\n' > out || fail=1
30 compare exp out || fail=1
32 # This would fail (by printing the '--') for printf in sh-utils
33 # and in coreutils 4.5.1.
34 $prog -- 'foo\n' > out || fail=1
35 cat <<\EOF > exp
36 foo
37 EOF
39 compare exp out || fail=1
41 rm -f out exp
42 # Until coreutils-4.5.10, this would elicit a segfault.
43 $prog '1 %*sy\n' -3 x > out || fail=1
45 # Until coreutils 5.2.2, this would succeed.
46 if POSIXLY_CORRECT=1 $prog '2 \x' >/dev/null 2>&1; then
47 fail=1
48 else
49 echo '2 failed, as expected' >> out
52 # Until coreutils-4.5.12, these would fail.
53 $prog '3 \x40\n' >> out || fail=1
54 POSIXLY_CORRECT=1 \
55 $prog '4 \x40\n' >> out || fail=1
56 $prog '5 % +d\n' 234 >> out || fail=1
58 # This should print "6 !\n", but don't rely on '!' being the
59 # one-byte representation of octal 041. With printf prior to
60 # coreutils-5.0.1, it would print six bytes: "6 \41\n".
61 $prog '6 \41\n' | tr '\41' '!' >> out
63 # Note that as of coreutils-5.0.1, printf with a format of '\0002x'
64 # prints a NUL byte followed by the digit '2' and an 'x'.
65 # By contrast bash's printf outputs the same thing as $(printf '\2x') does.
66 $prog '7 \2y \02y \002y \0002y\n' |tr '\0\2' '*=' >> out
68 $prog '8 %b %b %b %b\n' '\1y' '\01y' '\001y' '\0001y'|tr '\1' = >> out
70 $prog '9 %*dx\n' -2 0 >>out || fail=1
72 $prog '10 %.*dx\n' $INT_UFLOW 0 >>out || fail=1
73 returns_ 1 $prog '%.*dx\n' $INT_OFLOW 0 >>out 2> /dev/null || fail=1
75 $prog '11 %*c\n' 2 x >>out || fail=1
77 returns_ 1 $prog '%#d\n' 0 >>out 2> /dev/null || fail=1
79 returns_ 1 $prog '%0s\n' 0 >>out 2> /dev/null || fail=1
81 returns_ 1 $prog '%.9c\n' 0 >>out 2> /dev/null || fail=1
83 returns_ 1 $prog '%'\''s\n' 0 >>out 2> /dev/null || fail=1
85 cat <<\EOF > exp
86 1 x y
87 2 failed, as expected
88 3 @
89 4 @
90 5 +234
91 6 !
92 7 =y =y =y *2y
93 8 =y =y =y =y
94 9 0 x
95 10 0x
96 11 x
97 EOF
99 compare exp out || fail=1
101 # Verify handling of single quote chars (\' or \")
103 $prog '%d\n' '"a' >out 2>err # valid
104 $prog '%d\n' '"a"' >>out 2>>err # invalid
105 $prog '%d\n' '"' >>out 2>>err # invalid
106 $prog '%d\n' 'a' >>out 2>>err # invalid
108 cat <<EOF > exp
115 # POSIX says strtoimax *may* set errno to EINVAL in the latter
116 # two cases. So far, that happens at least on MacOS X 10.5.
117 # Map that output to the more common expected output.
118 sed 's/: Invalid.*/: expected a numeric value/' err > k && mv k err
120 cat <<EOF > exp_err
121 printf: warning: ": character(s) following character constant have been ignored
122 printf: '"': expected a numeric value
123 printf: 'a': expected a numeric value
126 compare exp out || fail=1
127 compare exp_err err || fail=1
129 Exit $fail