1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
|
#ifndef EFL_CHECK_H
#define EFL_CHECK_H
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <stdlib.h> /* getenv */
#include <stdio.h> /* fprintf, fputs */
#include <string.h> /* strcmp */
#include <unistd.h> /* execvp */
#include <errno.h> /* errno */
#include <sys/time.h>
#ifdef HAVE_FORK
#include <sys/types.h>
#include <sys/wait.h>
#include <Eina.h>
#endif
#ifndef EINA_UNUSED
#ifdef __GNUC__
# if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1)
# define EINA_UNUSED __attribute__ ((__unused__))
# else
# define EINA_UNUSED
# endif
#else
# define EINA_UNUSED
#endif
#endif
#ifdef HAVE_GETTIMEOFDAY
# if CHECK_MINOR_VERSION >= 11
# define ENABLE_TIMING_INFO
# endif
#endif
#define DISABLE_ABORT_ON_CRITICAL_START \
do { \
int ___val = eina_log_abort_on_critical_get(); \
eina_log_abort_on_critical_set(0)
#define DISABLE_ABORT_ON_CRITICAL_END \
eina_log_abort_on_critical_set(___val); \
} while (0)
typedef struct _Efl_Test_Case Efl_Test_Case;
struct _Efl_Test_Case
{
const char *test_case;
void (*build)(TCase *tc);
};
static void
_efl_tests_list(const Efl_Test_Case *etc)
{
const Efl_Test_Case *itr = etc;
fputs("Available Test Cases:\n", stderr);
for (; itr->test_case; itr++)
fprintf(stderr, "\t%s\n", itr->test_case);
}
EINA_UNUSED static int
_efl_test_option_disp(int argc, char **argv, const Efl_Test_Case *etc)
{
int i;
for (i = 1; i < argc; i++)
{
if ((strcmp(argv[i], "-h") == 0) ||
(strcmp(argv[i], "--help") == 0))
{
fprintf(stderr, "Usage: %s [options] [test_case1 .. [test_caseN]]\n",
argv[0]);
fprintf(stderr, " -l\t--list\t\tList all tests case.\n");
fprintf(stderr, " \t--valgrind\tRun the tests under valgrind.\n");
fprintf(stderr, "\nNote that CK_RUN_CASE=test_case does also filter which tests are run\n");
return 0;
}
else if ((strcmp(argv[i], "-l") == 0) ||
(strcmp(argv[i], "--list") == 0))
{
_efl_tests_list(etc);
return 0;
}
else if (strcmp(argv[i], "--valgrind") == 0)
{
const char *nav[argc + 3];
int j, k;
nav[0] = "valgrind";
nav[1] = "--trace-children=yes";
for (j = 0, k = 2; j < argc; j++)
{
if (i == j) continue ; // Remove --valgrind
nav[k++] = argv[j];
}
nav[k] = NULL;
execvp("valgrind", (char**) nav);
fprintf(stderr, "Failed to execute valgrind due to '%s'\n", strerror(errno));
return 0;
}
}
return 1;
}
static int
_efl_test_use(int argc, const char **argv, const char *test_case)
{
if (argc < 1)
return 1;
for (; argc > 0; argc--, argv++)
if (strcasecmp(test_case, *argv) == 0)
return 1;
return 0;
}
static int
_efl_test_fork_has(SRunner *sr)
{
if (srunner_fork_status(sr) == CK_FORK)
return 1;
else if (srunner_fork_status(sr) == CK_NOFORK)
return 0;
else if (srunner_fork_status(sr) == CK_FORK_GETENV)
{
char *res;
res = getenv("CK_FORK");
if (res && (strcmp(res, "no") == 0))
return 0;
else
return 1;
}
/* should never get there */
return 0;
}
#ifdef ENABLE_TIMING_INFO
EINA_UNUSED static double _timing_start_time;
static int
_timing_enabled(void)
{
const char *lc = getenv("TIMING_ENABLED");
return !!lc;
}
static double
_timing_time_get(void)
{
struct timeval timev;
gettimeofday(&timev, NULL);
return (double)timev.tv_sec + (((double)timev.tv_usec) / 1000000);
}
EINA_UNUSED static void
_timing_start(void)
{
if (_timing_enabled())
_timing_start_time = _timing_time_get();
}
EINA_UNUSED static void
_timing_end(void)
{
double diff;
static int thres_set = 0;
static double thres = 0;
if (!_timing_enabled()) return;
if (!thres_set)
{
const char *env = getenv("TIME_DIFF_THRESHOLD");
if (env)
{
thres = strtod(env, NULL);
if (thres > 0)
thres_set = 1;
}
if (!thres_set)
thres = 0.0001;
thres_set = 1;
}
diff = _timing_time_get() - _timing_start_time;
if (diff > thres)
printf("TIME %s: %.5g\n", tcase_name(), diff);
}
# define EFL_START_TEST(TEST_NAME) \
START_TEST(TEST_NAME) \
_timing_start();
# define EFL_END_TEST \
_timing_end(); \
END_TEST
#else
# define EFL_START_TEST(TEST_NAME) START_TEST(TEST_NAME)
# define EFL_END_TEST END_TEST
#endif
static int
_efl_suite_run_end(SRunner *sr, const char *name)
{
int failed_count;
if (name)
{
char *n = strdup(name);
char buf[4096], *p;
for (p = n; p[0]; p++)
{
switch (p[0])
{
case ' ':
case '/':
case '\\':
case ';':
p[0] = '_';
break;
}
}
snprintf(buf, sizeof(buf), TESTS_BUILD_DIR "/check-results-%s.xml", n);
srunner_set_xml(sr, buf);
}
else
srunner_set_xml(sr, TESTS_BUILD_DIR "/check-results.xml");
srunner_run_all(sr, CK_ENV);
failed_count = srunner_ntests_failed(sr);
srunner_free(sr);
return failed_count;
}
EINA_UNUSED static int
_efl_suite_build_and_run(int argc, const char **argv, const char *suite_name, const Efl_Test_Case *etc, SFun init, SFun shutdown)
{
Suite *s;
SRunner *sr;
TCase *tc;
int i, failed_count = 0;
int do_fork;
int num_forks = 0;
int can_fork = 0;
#ifdef ENABLE_TIMING_INFO
double tstart, tcstart;
int timing = _timing_enabled();
if (timing)
tcstart = tstart = _timing_time_get();
#endif
fflush(stdout);
s = suite_create(suite_name);
sr = srunner_create(s);
do_fork = _efl_test_fork_has(sr);
if (do_fork)
can_fork = !!etc[1].test_case /* can't parallelize 1 test */;
for (i = 0; etc[i].test_case; ++i)
{
int pid = 0;
if (!_efl_test_use(argc, argv, etc[i].test_case))
continue;
#ifdef HAVE_FORK
if (do_fork && can_fork)
{
if (num_forks == eina_cpu_count())
{
do
{
int status = 0;
waitpid(0, &status, 0);
failed_count += WEXITSTATUS(status);
num_forks--;
} while (0);
}
pid = fork();
if (pid > 0)
{
num_forks++;
#ifdef ENABLE_TIMING_INFO
if (timing)
tcstart = _timing_time_get();
#endif
continue;
}
}
#endif
tc = tcase_create(etc[i].test_case);
if (init || shutdown)
tcase_add_checked_fixture(tc, init, shutdown);
if (do_fork)
tcase_set_timeout(tc, 0);
etc[i].build(tc);
suite_add_tcase(s, tc);
#ifdef HAVE_FORK
if (do_fork && (!pid) && can_fork)
{
failed_count = _efl_suite_run_end(sr, etc[i].test_case);
if (failed_count > 255)
failed_count = 255;
#ifdef ENABLE_TIMING_INFO
if (timing)
printf("TC TIME %s: %.5g\n", etc[i].test_case, _timing_time_get() - tcstart);
#endif
exit(failed_count);
}
#endif
}
#ifdef HAVE_FORK
if (num_forks)
{
do
{
int status = 0;
waitpid(0, &status, 0);
failed_count += WEXITSTATUS(status);
} while (--num_forks);
}
else
#endif
failed_count = _efl_suite_run_end(sr, NULL);
#ifdef ENABLE_TIMING_INFO
if (timing)
{
printf("SUITE TIME(%u) %s: %.5g\n", getpid(), suite_name, _timing_time_get() - tstart);
fflush(stdout);
}
#endif
return failed_count;
}
#define SUITE_INIT(NAME) static void _##NAME##_suite_init(void)
#define SUITE_INIT_FN(NAME) _##NAME##_suite_init
#define SUITE_SHUTDOWN(NAME) static void _##NAME##_suite_shutdown(void)
#define SUITE_SHUTDOWN_FN(NAME) _##NAME##_suite_shutdown
#endif
|