annotate tests/test-strtoumax.c @ 40186:8964917f9574

autoupdate
author Karl Berry <karl@freefriends.org>
date Mon, 18 Feb 2019 08:02:49 -0800
parents b06060465f09
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
15553
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1 /*
40057
b06060465f09 maint: Run 'make update-copyright'
Paul Eggert <eggert@cs.ucla.edu>
parents: 19484
diff changeset
2 * Copyright (C) 2011-2019 Free Software Foundation, Inc.
15553
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3 *
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
4 * This program is free software: you can redistribute it and/or modify
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
5 * it under the terms of the GNU General Public License as published by
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6 * the Free Software Foundation; either version 3 of the License, or
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7 * (at your option) any later version.
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
8 *
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
9 * This program is distributed in the hope that it will be useful,
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
12 * GNU General Public License for more details.
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
13 *
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
14 * You should have received a copy of the GNU General Public License
19190
9759915b2aca all: prefer https: URLs
Paul Eggert <eggert@cs.ucla.edu>
parents: 18626
diff changeset
15 * along with this program. If not, see <https://www.gnu.org/licenses/>. */
15553
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
16
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
17 #include <config.h>
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
18
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
19 #include <inttypes.h>
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
20
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
21 #include "signature.h"
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
22 #ifndef strtoumax
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
23 SIGNATURE_CHECK (strtoumax, uintmax_t, (const char *, char **, int));
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
24 #endif
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
25
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
26 #include <errno.h>
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
27
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
28 #include "macros.h"
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
29
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
30 int
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
31 main (void)
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
32 {
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
33 /* Subject sequence empty or invalid. */
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
34 {
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
35 const char input[] = "";
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
36 char *ptr;
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
37 uintmax_t result;
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
38 errno = 0;
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
39 result = strtoumax (input, &ptr, 10);
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
40 ASSERT (result == 0);
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
41 ASSERT (ptr == input);
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
42 ASSERT (errno == 0 || errno == EINVAL);
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
43 }
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
44 {
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
45 const char input[] = " ";
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
46 char *ptr;
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
47 uintmax_t result;
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
48 errno = 0;
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
49 result = strtoumax (input, &ptr, 10);
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
50 ASSERT (result == 0);
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
51 ASSERT (ptr == input);
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
52 ASSERT (errno == 0 || errno == EINVAL);
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
53 }
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
54 {
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
55 const char input[] = " +";
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
56 char *ptr;
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
57 uintmax_t result;
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
58 errno = 0;
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
59 result = strtoumax (input, &ptr, 10);
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
60 ASSERT (result == 0);
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
61 ASSERT (ptr == input);
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
62 ASSERT (errno == 0 || errno == EINVAL);
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
63 }
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
64 {
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
65 const char input[] = " -";
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
66 char *ptr;
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
67 uintmax_t result;
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
68 errno = 0;
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
69 result = strtoumax (input, &ptr, 10);
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
70 ASSERT (result == 0);
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
71 ASSERT (ptr == input);
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
72 ASSERT (errno == 0 || errno == EINVAL);
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
73 }
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
74
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
75 /* Simple integer values. */
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
76 {
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
77 const char input[] = "0";
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
78 char *ptr;
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
79 uintmax_t result;
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
80 errno = 0;
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
81 result = strtoumax (input, &ptr, 10);
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
82 ASSERT (result == 0);
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
83 ASSERT (ptr == input + 1);
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
84 ASSERT (errno == 0);
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
85 }
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
86 {
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
87 const char input[] = "+0";
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
88 char *ptr;
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
89 uintmax_t result;
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
90 errno = 0;
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
91 result = strtoumax (input, &ptr, 10);
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
92 ASSERT (result == 0);
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
93 ASSERT (ptr == input + 2);
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
94 ASSERT (errno == 0);
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
95 }
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
96 {
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
97 const char input[] = "-0";
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
98 char *ptr;
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
99 uintmax_t result;
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
100 errno = 0;
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
101 result = strtoumax (input, &ptr, 10);
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
102 ASSERT (result == 0);
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
103 ASSERT (ptr == input + 2);
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
104 ASSERT (errno == 0);
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
105 }
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
106 {
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
107 const char input[] = "23";
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
108 char *ptr;
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
109 uintmax_t result;
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
110 errno = 0;
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
111 result = strtoumax (input, &ptr, 10);
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
112 ASSERT (result == 23);
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
113 ASSERT (ptr == input + 2);
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
114 ASSERT (errno == 0);
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
115 }
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
116 {
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
117 const char input[] = " 23";
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
118 char *ptr;
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
119 uintmax_t result;
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
120 errno = 0;
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
121 result = strtoumax (input, &ptr, 10);
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
122 ASSERT (result == 23);
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
123 ASSERT (ptr == input + 3);
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
124 ASSERT (errno == 0);
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
125 }
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
126 {
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
127 const char input[] = "+23";
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
128 char *ptr;
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
129 uintmax_t result;
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
130 errno = 0;
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
131 result = strtoumax (input, &ptr, 10);
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
132 ASSERT (result == 23);
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
133 ASSERT (ptr == input + 3);
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
134 ASSERT (errno == 0);
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
135 }
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
136 {
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
137 const char input[] = "-23";
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
138 char *ptr;
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
139 uintmax_t result;
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
140 errno = 0;
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
141 result = strtoumax (input, &ptr, 10);
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
142 ASSERT (result == - (uintmax_t) 23);
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
143 ASSERT (ptr == input + 3);
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
144 ASSERT (errno == 0);
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
145 }
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
146
16231
e8cde289d525 strtoumax tests: Enhance tests.
Bruno Haible <bruno@clisp.org>
parents: 16201
diff changeset
147 /* Large integer values. */
e8cde289d525 strtoumax tests: Enhance tests.
Bruno Haible <bruno@clisp.org>
parents: 16201
diff changeset
148 {
e8cde289d525 strtoumax tests: Enhance tests.
Bruno Haible <bruno@clisp.org>
parents: 16201
diff changeset
149 const char input[] = "2147483647";
e8cde289d525 strtoumax tests: Enhance tests.
Bruno Haible <bruno@clisp.org>
parents: 16201
diff changeset
150 char *ptr;
e8cde289d525 strtoumax tests: Enhance tests.
Bruno Haible <bruno@clisp.org>
parents: 16201
diff changeset
151 uintmax_t result;
e8cde289d525 strtoumax tests: Enhance tests.
Bruno Haible <bruno@clisp.org>
parents: 16201
diff changeset
152 errno = 0;
e8cde289d525 strtoumax tests: Enhance tests.
Bruno Haible <bruno@clisp.org>
parents: 16201
diff changeset
153 result = strtoumax (input, &ptr, 10);
e8cde289d525 strtoumax tests: Enhance tests.
Bruno Haible <bruno@clisp.org>
parents: 16201
diff changeset
154 ASSERT (result == 2147483647);
e8cde289d525 strtoumax tests: Enhance tests.
Bruno Haible <bruno@clisp.org>
parents: 16201
diff changeset
155 ASSERT (ptr == input + 10);
e8cde289d525 strtoumax tests: Enhance tests.
Bruno Haible <bruno@clisp.org>
parents: 16201
diff changeset
156 ASSERT (errno == 0);
e8cde289d525 strtoumax tests: Enhance tests.
Bruno Haible <bruno@clisp.org>
parents: 16201
diff changeset
157 }
e8cde289d525 strtoumax tests: Enhance tests.
Bruno Haible <bruno@clisp.org>
parents: 16201
diff changeset
158 {
e8cde289d525 strtoumax tests: Enhance tests.
Bruno Haible <bruno@clisp.org>
parents: 16201
diff changeset
159 const char input[] = "-2147483648";
e8cde289d525 strtoumax tests: Enhance tests.
Bruno Haible <bruno@clisp.org>
parents: 16201
diff changeset
160 char *ptr;
e8cde289d525 strtoumax tests: Enhance tests.
Bruno Haible <bruno@clisp.org>
parents: 16201
diff changeset
161 uintmax_t result;
e8cde289d525 strtoumax tests: Enhance tests.
Bruno Haible <bruno@clisp.org>
parents: 16201
diff changeset
162 errno = 0;
e8cde289d525 strtoumax tests: Enhance tests.
Bruno Haible <bruno@clisp.org>
parents: 16201
diff changeset
163 result = strtoumax (input, &ptr, 10);
e8cde289d525 strtoumax tests: Enhance tests.
Bruno Haible <bruno@clisp.org>
parents: 16201
diff changeset
164 ASSERT (result == - (uintmax_t) 2147483648U);
e8cde289d525 strtoumax tests: Enhance tests.
Bruno Haible <bruno@clisp.org>
parents: 16201
diff changeset
165 ASSERT (ptr == input + 11);
e8cde289d525 strtoumax tests: Enhance tests.
Bruno Haible <bruno@clisp.org>
parents: 16201
diff changeset
166 ASSERT (errno == 0);
e8cde289d525 strtoumax tests: Enhance tests.
Bruno Haible <bruno@clisp.org>
parents: 16201
diff changeset
167 }
e8cde289d525 strtoumax tests: Enhance tests.
Bruno Haible <bruno@clisp.org>
parents: 16201
diff changeset
168 {
e8cde289d525 strtoumax tests: Enhance tests.
Bruno Haible <bruno@clisp.org>
parents: 16201
diff changeset
169 const char input[] = "4294967295";
e8cde289d525 strtoumax tests: Enhance tests.
Bruno Haible <bruno@clisp.org>
parents: 16201
diff changeset
170 char *ptr;
e8cde289d525 strtoumax tests: Enhance tests.
Bruno Haible <bruno@clisp.org>
parents: 16201
diff changeset
171 uintmax_t result;
e8cde289d525 strtoumax tests: Enhance tests.
Bruno Haible <bruno@clisp.org>
parents: 16201
diff changeset
172 errno = 0;
e8cde289d525 strtoumax tests: Enhance tests.
Bruno Haible <bruno@clisp.org>
parents: 16201
diff changeset
173 result = strtoumax (input, &ptr, 10);
e8cde289d525 strtoumax tests: Enhance tests.
Bruno Haible <bruno@clisp.org>
parents: 16201
diff changeset
174 ASSERT (result == 4294967295U);
e8cde289d525 strtoumax tests: Enhance tests.
Bruno Haible <bruno@clisp.org>
parents: 16201
diff changeset
175 ASSERT (ptr == input + 10);
e8cde289d525 strtoumax tests: Enhance tests.
Bruno Haible <bruno@clisp.org>
parents: 16201
diff changeset
176 ASSERT (errno == 0);
e8cde289d525 strtoumax tests: Enhance tests.
Bruno Haible <bruno@clisp.org>
parents: 16201
diff changeset
177 }
e8cde289d525 strtoumax tests: Enhance tests.
Bruno Haible <bruno@clisp.org>
parents: 16201
diff changeset
178
15553
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
179 return 0;
deb8b9390f3c Tests for module 'strtoumax'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
180 }