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.
19 lines
473 B
19 lines
473 B
#include "greatest.h"
|
|
|
|
SUITE_EXTERN(suite_utils);
|
|
SUITE_EXTERN(suite_option_parser);
|
|
SUITE_EXTERN(suite_notification);
|
|
SUITE_EXTERN(suite_markup);
|
|
|
|
GREATEST_MAIN_DEFS();
|
|
|
|
int main(int argc, char *argv[]) {
|
|
GREATEST_MAIN_BEGIN();
|
|
RUN_SUITE(suite_utils);
|
|
RUN_SUITE(suite_option_parser);
|
|
RUN_SUITE(suite_notification);
|
|
RUN_SUITE(suite_markup);
|
|
GREATEST_MAIN_END();
|
|
}
|
|
/* vim: set tabstop=8 shiftwidth=8 expandtab textwidth=0: */
|