Whittle away at warnings: (#18874)
[mono-project.git] / mono / eglib / test / driver.c
blob8c5781f179789ac8d34fab40cfdee4246f950d47
1 /*
2 * EGLib Unit Test Driver
4 * Author:
5 * Aaron Bockover (abockover@novell.com)
7 * (C) 2006 Novell, Inc.
9 * Permission is hereby granted, free of charge, to any person obtaining
10 * a copy of this software and associated documentation files (the
11 * "Software"), to deal in the Software without restriction, including
12 * without limitation the rights to use, copy, modify, merge, publish,
13 * distribute, sublicense, and/or sell copies of the Software, and to
14 * permit persons to whom the Software is furnished to do so, subject to
15 * the following conditions:
17 * The above copyright notice and this permission notice shall be
18 * included in all copies or substantial portions of the Software.
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 #include <config.h>
30 #include "test.h"
32 #ifndef DRIVER_EXTERNAL_TESTS
33 #include "tests.h"
34 #endif
36 #include <stdio.h>
37 #ifdef HAVE_GETOPT_H
38 #include <getopt.h>
39 #endif
41 #if defined(HAVE_UNISTD_H)
42 #include <unistd.h>
43 #endif
45 #ifndef DRIVER_NAME
46 #define DRIVER_NAME "EGlib"
47 #endif
49 typedef struct _StringArray {
50 gchar **strings;
51 gint length;
52 } StringArray;
54 static StringArray *
55 string_array_append(StringArray *array, gchar *string)
57 if (array == NULL) {
58 array = g_new0(StringArray, 1);
59 array->length = 1;
60 array->strings = g_malloc(sizeof(gchar *) * 2);
61 } else {
62 array->length++;
63 array->strings = g_realloc(array->strings, sizeof(gchar *)
64 * (array->length + 1));
67 array->strings[array->length - 1] = string;
68 array->strings[array->length] = NULL;
70 return array;
73 gint global_passed = 0, global_tests = 0;
75 static void
76 string_array_free(StringArray *array)
78 g_free(array->strings);
79 g_free(array);
82 static void print_help(char *s)
84 gint i;
86 printf("Usage: %s [OPTION]... [TESTGROUP]...\n\n", s);
87 printf("OPTIONS are:\n");
88 printf(" -h, --help show this help\n");
89 printf(" -t, --time time the tests\n");
90 printf(" -i, --iterations number of times to run tests\n");
91 printf(" -q, --quiet do not print test results; "
92 "final time always prints\n");
93 printf(" -n, --no-labels print final time without labels, "
94 "nice for scripts\n");
95 printf(" -d, --debug do not run tests, "
96 "debug the driver itself for valgrind\n\n");
97 printf("TESTGROUPS available:\n");
99 for (i = 0; test_groups[i].name != NULL; i++) {
100 if (test_groups[i].handler != fake_tests_init) {
101 printf(" %s\n", test_groups[i].name);
105 printf("\n");
108 #ifdef DRIVER_EXTERNAL_MAIN
109 gint run_tests_main(gint argc, gchar **argv)
110 #else
111 gint main(gint argc, gchar **argv)
112 #endif
114 gint j, iterations = 1;
115 StringArray *tests_to_run = NULL;
116 gdouble time_start;
117 gboolean report_time = FALSE;
118 gboolean quiet = FALSE;
119 gboolean global_failure = FALSE;
120 gboolean no_final_time_labels = FALSE;
121 gboolean debug = FALSE;
123 #if HAVE_GETOPT_H
124 int c;
125 int i;
126 static struct option long_options [] = {
127 {"help", no_argument, 0, 'h'},
128 {"time", no_argument, 0, 't'},
129 {"quiet", no_argument, 0, 'q'},
130 {"iterations", required_argument, 0, 'i'},
131 {"debug", no_argument, 0, 'd'},
132 {"no-labels", no_argument, 0, 'n'},
133 {0, 0, 0, 0}
136 while((c = getopt_long(argc, argv, "dhtqni:", long_options, NULL)) != -1) { switch(c) {
137 case 'h':
138 print_help(argv[0]);
139 return 1;
140 case 't':
141 report_time = TRUE;
142 break;
143 case 'i':
144 iterations = atoi(optarg);
145 break;
146 case 'q':
147 quiet = TRUE;
148 break;
149 case 'n':
150 no_final_time_labels = TRUE;
151 break;
152 case 'd':
153 debug = TRUE;
154 break;
158 for (i = optind; i < argc; i++) {
159 if (argv[i][0] == '-') {
160 continue;
163 tests_to_run = string_array_append(tests_to_run, argv[i]);
165 #endif
167 time_start = get_timestamp();
169 for (j = 0; test_groups[j].name != NULL; j++) {
170 gboolean run = TRUE;
171 gchar *tests = NULL;
172 gchar *group = NULL;
174 if (tests_to_run != NULL) {
175 gint k;
176 run = FALSE;
178 for (k = 0; k < tests_to_run->length; k++) {
179 gchar *user = tests_to_run->strings[k];
180 const gchar *table = test_groups[j].name;
181 size_t user_len = strlen(user);
182 size_t table_len = strlen(table);
184 if (strncmp(user, table, table_len) == 0) {
185 if (user_len > table_len && user[table_len] != ':') {
186 break;
189 run = TRUE;
190 group = tests_to_run->strings[k];
191 break;
196 if (run) {
197 gboolean passed;
198 gchar **split = NULL;
200 if (debug && test_groups[j].handler != fake_tests_init) {
201 printf("Skipping %s, in driver debug mode\n",
202 test_groups[j].name);
203 continue;
204 } else if (!debug && test_groups[j].handler == fake_tests_init) {
205 continue;
208 if (group != NULL) {
209 split = eg_strsplit(group, ":", -1);
210 if (split != NULL) {
211 gint m;
212 for (m = 0; split[m] != NULL; m++) {
213 if (m == 1) {
214 tests = strdup(split[m]);
215 break;
218 eg_strfreev(split);
222 passed = run_group(&(test_groups[j]),
223 iterations, quiet, report_time, tests);
225 if (tests != NULL) {
226 g_free(tests);
229 if (!passed && !global_failure) {
230 global_failure = TRUE;
235 if (!quiet) {
236 gdouble pass_percentage = ((gdouble)global_passed / (gdouble)global_tests) * 100.0;
237 printf("=============================\n");
238 printf("Overall result: %s : %d / %d (%g%%)\n", global_failure ? "FAILED" : "OK", global_passed, global_tests, pass_percentage);
241 if (report_time) {
242 gdouble duration = get_timestamp() - time_start;
243 if (no_final_time_labels) {
244 printf("%g\n", duration);
245 } else {
246 printf("%s Total Time: %g\n", DRIVER_NAME, duration);
250 if (tests_to_run != NULL) {
251 string_array_free(tests_to_run);
254 return global_tests - global_passed;