3 .
"$srcdir/init.sh"; path_prepend_ .
5 too_big
=99999999999999999999999999999999999999999999999999999999999999999999
9 test-xstrtol
1 >> out
2>&1 || result
=1
10 test-xstrtol
-1 >> out
2>&1 || result
=1
11 test-xstrtol
1k
>> out
2>&1 || result
=1
12 test-xstrtol
${too_big}h
>> out
2>&1 && result
=1
13 test-xstrtol
$too_big >> out
2>&1 && result
=1
14 test-xstrtol x
>> out
2>&1 && result
=1
15 test-xstrtol
9x
>> out
2>&1 && result
=1
16 test-xstrtol
010 >> out
2>&1 || result
=1
17 # suffix without integer is valid
18 test-xstrtol MiB
>> out
2>&1 || result
=1
19 test-xstrtol
1bB
>> out
2>&1 && result
=1
22 test-xstrtoul
1 >> out
2>&1 || result
=1
23 test-xstrtoul
-1 >> out
2>&1 && result
=1
24 test-xstrtoul
1k
>> out
2>&1 || result
=1
25 test-xstrtoul
${too_big}h
>> out
2>&1 && result
=1
26 test-xstrtoul
$too_big >> out
2>&1 && result
=1
27 test-xstrtoul x
>> out
2>&1 && result
=1
28 test-xstrtoul
9x
>> out
2>&1 && result
=1
29 test-xstrtoul
010 >> out
2>&1 || result
=1
30 test-xstrtoul MiB
>> out
2>&1 || result
=1
31 test-xstrtoul
1bB
>> out
2>&1 && result
=1
33 # Find out how to remove carriage returns from output. Solaris /usr/ucb/tr
34 # does not understand '\r'.
35 if echo solaris |
tr -d '\r' |
grep solais
> /dev
/null
; then
42 LC_ALL
=C
tr -d "$cr" < out
> k
45 # compare expected output
50 invalid suffix in X argument '${too_big}h'
51 X argument '$too_big' too large
52 invalid X argument 'x'
53 invalid suffix in X argument '9x'
56 invalid suffix in X argument '1bB'
58 invalid X argument '-1'
60 invalid suffix in X argument '${too_big}h'
61 X argument '$too_big' too large
62 invalid X argument 'x'
63 invalid suffix in X argument '9x'
66 invalid suffix in X argument '1bB'
69 compare expected out || result
=1