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.
29 lines
532 B
29 lines
532 B
3 years ago
|
// This stops the main definintion in the sub suites
|
||
|
#define MAINTEST
|
||
|
|
||
|
#include "munit/munit.h"
|
||
|
#include "config.test.c"
|
||
|
#include <string.h>
|
||
|
#include <stdio.h>
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
int main (int argc, char* argv[]) {
|
||
|
|
||
|
MunitSuite all_suites[] = {
|
||
|
config_test_suite,
|
||
|
{ NULL, NULL, NULL, 0, MUNIT_SUITE_OPTION_NONE }
|
||
|
};
|
||
|
|
||
|
MunitSuite all_test_suite = {
|
||
|
"", /* name */
|
||
|
NULL, /* tests */
|
||
|
all_suites, /* suites */
|
||
|
1, /* iterations */
|
||
|
MUNIT_SUITE_OPTION_NONE /* options */
|
||
|
};
|
||
|
|
||
|
return munit_suite_main(&all_test_suite, NULL, argc, argv);
|
||
|
}
|