]> git.draconx.ca Git - cdecl99.git/blob - t/testlib.c
Avoid gnulib getline module.
[cdecl99.git] / t / testlib.c
1 /*
2  *  Miscellaneous functions used by the cdecl99 test suite.
3  *  Copyright © 2011-2012, 2021-2024 Nick Bowler
4  *
5  *  This program is free software: you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation, either version 3 of the License, or
8  *  (at your option) any later version.
9  *
10  *  This program is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *  GNU General Public License for more details.
14  *
15  *  You should have received a copy of the GNU General Public License
16  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18
19 #include <config.h>
20 #include <stdio.h>
21 #include <stdlib.h>
22 #include <string.h>
23 #include <stdarg.h>
24 #include <errno.h>
25 #include <getopt.h>
26
27 #include "cdecl.h"
28
29 #include "help.h"
30 #include "test.h"
31 #include "intconv.h"
32
33 void print_error(const char *fmt, ...)
34 {
35         extern const char *progname;
36         va_list ap;
37
38         fprintf(stderr, "%s: ", progname);
39
40         va_start(ap, fmt);
41         vfprintf(stderr, fmt, ap);
42         va_end(ap);
43
44         fprintf(stderr, "\n");
45 }
46
47 void *realloc_nofail(void *ptr, size_t size)
48 {
49         void *p;
50         
51         p = realloc(ptr, size);
52         if (!p) {
53                 perror("failed to allocate memory");
54                 abort();
55         }
56
57         return p;
58 }
59
60 void *malloc_nofail(size_t size)
61 {
62         return realloc_nofail(NULL, size);
63 }
64
65 static unsigned intconv_base(const char **str)
66 {
67         if ((*str)[0] == '0') {
68                 if ((*str)[1] == 'X' || (*str)[1] == 'x') {
69                         *str += 2;
70                         return INTCONV_HEXADECIMAL;
71                 }
72
73                 return INTCONV_OCTAL;
74         }
75
76         return INTCONV_DECIMAL;
77 }
78
79 bool test_strtoumax(uintmax_t *out, const char *s, uintmax_t limit)
80 {
81         static const char idx[] = "0123456789abcdef0123456789ABCDEF";
82         unsigned base = intconv_base(&s);
83         uintmax_t v;
84         char *c, d;
85
86         for (v = 0; (d = *s++);) {
87                 if (!(c = strchr(idx, d)) || (d = (c-idx) & 0xf) >= base)
88                         return 0;
89
90                 if (!intconv_shift(&v, base, d) || v > limit)
91                         return 0;
92         }
93
94         *out = v;
95         return true;
96 }
97
98 void test_print_options(const struct option *lopts)
99 {
100         const struct option *opt;
101
102         puts("Options:");
103         for (opt = lopts; opt->val; opt++) {
104                 if (help_print_optstring(opt, "ARG", 20))
105                         putchar('\n');
106         }
107 }