efl/src/tests/eolian/eolian_suite.c

50 lines
1005 B
C
Raw Permalink Normal View History

2014-04-20 23:36:44 -07:00
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
2016-02-04 06:04:45 -08:00
#ifdef _WIN32
# include <evil_private.h> /* setenv */
2016-02-04 06:04:45 -08:00
#endif
2014-04-20 23:36:44 -07:00
#include "eolian_suite.h"
2016-02-04 06:04:45 -08:00
#include "../efl_check.h"
#include <Eolian.h>
2014-04-20 23:36:44 -07:00
2016-02-04 06:04:45 -08:00
static const Efl_Test_Case etc[] = {
2014-04-20 23:36:44 -07:00
{ "Eolian Parsing", eolian_parsing_test},
{ "Eolian Static Analysis", eolian_static_test},
{ "Eolian Generation", eolian_generation_test},
{ "Eolian Aux", eolian_aux_test},
2014-04-20 23:36:44 -07:00
{ NULL, NULL }
};
SUITE_INIT(eolian)
{
ck_assert_int_eq(eolian_init(), 1);
}
SUITE_SHUTDOWN(eolian)
{
ck_assert_int_eq(eolian_shutdown(), 0);
}
2014-04-20 23:36:44 -07:00
int
main(int argc, char **argv)
{
2016-02-04 06:04:45 -08:00
int failed_count;
2014-04-20 23:36:44 -07:00
setenv("CK_FORK", "no", 0);
2016-02-04 06:04:45 -08:00
if (!_efl_test_option_disp(argc, argv, etc))
return 0;
2014-04-20 23:36:44 -07:00
#ifdef NEED_RUN_IN_TREE
2014-04-20 23:36:44 -07:00
putenv("EFL_RUN_IN_TREE=1");
#endif
2014-04-20 23:36:44 -07:00
2016-02-04 06:04:45 -08:00
failed_count = _efl_suite_build_and_run(argc - 1, (const char **)argv + 1,
"Eolian", etc, SUITE_INIT_FN(eolian), SUITE_SHUTDOWN_FN(eolian));
2014-04-20 23:36:44 -07:00
return (failed_count == 0) ? 0 : 255;
}