1 /*
2 * This file and its contents are supplied under the terms of the
3 * Common Development and Distribution License ("CDDL"), version 1.0.
4 * You may only use this file in accordance with the terms of version
5 * 1.0 of the CDDL.
6 *
7 * A full copy of the text of the CDDL should have accompanied this
8 * source. A copy of the CDDL is also available via the Internet at
9 * http://www.illumos.org/license/CDDL.
10 */
11
12 /*
13 * Copyright (c) 2019, Joyent, Inc.
14 */
15
16 /*
17 * Check that we properly handle enums.
18 */
19
20 #include "check-common.h"
21
22 static check_symbol_t check_syms[] = {
23 { "ff6", "enum ff6" },
24 { "ff10", "ff10_t" },
25 { NULL }
26 };
27
28 static check_descent_t check_descent_ff6[] = {
29 { "enum ff6", CTF_K_ENUM },
30 { NULL }
31 };
32
33 static check_descent_t check_descent_ff10[] = {
107 int i, ret = 0;
108
109 if (argc < 2) {
110 errx(EXIT_FAILURE, "missing test files");
111 }
112
113 for (i = 1; i < argc; i++) {
114 ctf_file_t *fp;
115 uint_t d;
116
117 if ((fp = ctf_open(argv[i], &ret)) == NULL) {
118 warnx("failed to open %s: %s", argv[i],
119 ctf_errmsg(ret));
120 ret = EXIT_FAILURE;
121 continue;
122 }
123 if (!ctftest_check_symbols(fp, check_syms))
124 ret = EXIT_FAILURE;
125 for (d = 0; descents[d].cdt_sym != NULL; d++) {
126 if (!ctftest_check_descent(descents[d].cdt_sym, fp,
127 descents[d].cdt_tests)) {
128 ret = EXIT_FAILURE;
129 }
130 }
131
132 for (d = 0; enums[d].cet_type != NULL; d++) {
133 if (!ctftest_check_enum(enums[d].cet_type, fp,
134 enums[d].cet_tests)) {
135 ret = EXIT_FAILURE;
136 }
137 }
138 ctf_close(fp);
139 }
140
141 return (ret);
142
143 }
|
1 /*
2 * This file and its contents are supplied under the terms of the
3 * Common Development and Distribution License ("CDDL"), version 1.0.
4 * You may only use this file in accordance with the terms of version
5 * 1.0 of the CDDL.
6 *
7 * A full copy of the text of the CDDL should have accompanied this
8 * source. A copy of the CDDL is also available via the Internet at
9 * http://www.illumos.org/license/CDDL.
10 */
11
12 /*
13 * Copyright 2019, Joyent, Inc.
14 */
15
16 /*
17 * Check that we properly handle enums.
18 */
19
20 #include "check-common.h"
21
22 static check_symbol_t check_syms[] = {
23 { "ff6", "enum ff6" },
24 { "ff10", "ff10_t" },
25 { NULL }
26 };
27
28 static check_descent_t check_descent_ff6[] = {
29 { "enum ff6", CTF_K_ENUM },
30 { NULL }
31 };
32
33 static check_descent_t check_descent_ff10[] = {
107 int i, ret = 0;
108
109 if (argc < 2) {
110 errx(EXIT_FAILURE, "missing test files");
111 }
112
113 for (i = 1; i < argc; i++) {
114 ctf_file_t *fp;
115 uint_t d;
116
117 if ((fp = ctf_open(argv[i], &ret)) == NULL) {
118 warnx("failed to open %s: %s", argv[i],
119 ctf_errmsg(ret));
120 ret = EXIT_FAILURE;
121 continue;
122 }
123 if (!ctftest_check_symbols(fp, check_syms))
124 ret = EXIT_FAILURE;
125 for (d = 0; descents[d].cdt_sym != NULL; d++) {
126 if (!ctftest_check_descent(descents[d].cdt_sym, fp,
127 descents[d].cdt_tests, B_FALSE)) {
128 ret = EXIT_FAILURE;
129 }
130 }
131
132 for (d = 0; enums[d].cet_type != NULL; d++) {
133 if (!ctftest_check_enum(enums[d].cet_type, fp,
134 enums[d].cet_tests)) {
135 ret = EXIT_FAILURE;
136 }
137 }
138 ctf_close(fp);
139 }
140
141 return (ret);
142
143 }
|