efl/src/tests/eolian/eolian_suite.c

35 lines
675 B
C
Raw 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.h> /* setenv */
#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"
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 Generation", eolian_generation_test},
2014-04-20 23:36:44 -07:00
{ NULL, NULL }
};
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
putenv("EFL_RUN_IN_TREE=1");
2016-02-04 06:04:45 -08:00
failed_count = _efl_suite_build_and_run(argc - 1, (const char **)argv + 1,
"Eolian", etc);
2014-04-20 23:36:44 -07:00
return (failed_count == 0) ? 0 : 255;
}