You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
103 lines
1.9 KiB
103 lines
1.9 KiB
#ifdef HAVE_CONFIG_H |
|
# include <config.h> |
|
#endif |
|
|
|
#include <stdlib.h> |
|
#include <stdio.h> |
|
|
|
#include <Efreet.h> |
|
|
|
#include "efreet_suite.h" |
|
|
|
typedef struct _Efreet_Test_Case Efreet_Test_Case; |
|
|
|
struct _Efreet_Test_Case |
|
{ |
|
const char *test_case; |
|
void (*build)(TCase *tc); |
|
}; |
|
|
|
static const Efreet_Test_Case etc[] = { |
|
{ "Efreet", efreet_test_efreet }, |
|
{ "Efreet Cache", efreet_test_efreet_cache }, |
|
{ NULL, NULL } |
|
}; |
|
|
|
static void |
|
_list_tests(void) |
|
{ |
|
const Efreet_Test_Case *itr; |
|
|
|
itr = etc; |
|
fputs("Available Test Cases:\n", stderr); |
|
for (; itr->test_case; itr++) |
|
fprintf(stderr, "\t%s\n", itr->test_case); |
|
} |
|
|
|
static Eina_Bool |
|
_use_test(int argc, const char **argv, const char *test_case) |
|
{ |
|
if (argc < 1) |
|
return 1; |
|
|
|
for (; argc > 0; argc--, argv++) |
|
if (strcmp(test_case, *argv) == 0) |
|
return 1; |
|
return 0; |
|
} |
|
|
|
static Suite * |
|
efreet_suite_build(int argc, const char **argv) |
|
{ |
|
TCase *tc; |
|
Suite *s; |
|
int i; |
|
|
|
s = suite_create("Efreet"); |
|
|
|
for (i = 0; etc[i].test_case; ++i) |
|
{ |
|
if (!_use_test(argc, argv, etc[i].test_case)) continue; |
|
tc = tcase_create(etc[i].test_case); |
|
|
|
etc[i].build(tc); |
|
|
|
suite_add_tcase(s, tc); |
|
tcase_set_timeout(tc, 0); |
|
} |
|
|
|
return s; |
|
} |
|
|
|
int |
|
main(int argc, char **argv) |
|
{ |
|
Suite *s; |
|
SRunner *sr; |
|
int i, failed_count; |
|
|
|
for (i = 1; i < argc; i++) |
|
if ((strcmp(argv[i], "-h") == 0) || |
|
(strcmp(argv[i], "--help") == 0)) |
|
{ |
|
fprintf(stderr, "Usage:\n\t%s [test_case1 .. [test_caseN]]\n", |
|
argv[0]); |
|
_list_tests(); |
|
return 0; |
|
} |
|
else if ((strcmp(argv[i], "-l") == 0) || |
|
(strcmp(argv[i], "--list") == 0)) |
|
{ |
|
_list_tests(); |
|
return 0; |
|
} |
|
|
|
s = efreet_suite_build(argc - 1, (const char **)argv + 1); |
|
sr = srunner_create(s); |
|
|
|
srunner_run_all(sr, CK_NORMAL); |
|
failed_count = srunner_ntests_failed(sr); |
|
srunner_free(sr); |
|
|
|
return (failed_count == 0) ? 0 : 255; |
|
}
|
|
|