blob: 4478273d587b9f4886b76bfd3f45f92f390def28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#include "../lib/libcompat.h"
#include <stdlib.h>
#include <stdio.h>
#include <check.h>
#include "check_check.h"
int main (void)
{
int n;
SRunner *sr;
fork_setup();
setup();
sr = srunner_create (make_master_suite());
srunner_add_suite(sr, make_log_suite());
srunner_add_suite(sr, make_fork_suite());
printf ("Ran %d tests in subordinate suite\n", sub_ntests);
srunner_run_all (sr, CK_VERBOSE);
cleanup();
fork_teardown();
n = srunner_ntests_failed(sr);
srunner_free(sr);
return (n == 0) ? EXIT_SUCCESS : EXIT_FAILURE;
}
|