procps/include/tests.h
Jim Warner 2c89119668 build-sys: fix some important 'tests.h' related issues
Exploiting a header file shouldn't also force users to
code their own '#include <stdio.h>'. More importantly,
unless this header is mentioned in dist_noinst_HEADERS
we'd fail 'make distcheck' with the error shown below.

[ the same error will apply to all 'noinst_PROGRAMS' ]
[ that happen to use this header. but please, do not ]
[ ask me to explain exactly why or how my fix works! ]

Reference(s):
../../proc/test_pids.c:24:10: fatal error: tests.h: No such file or directory
   24 | #include "tests.h"
      |          ^~~~~~~~~

Signed-off-by: Jim Warner <james.warner@comcast.net>
2020-08-17 21:49:08 +10:00

30 lines
560 B
C

#ifndef PROCPS_NG_TESTS_H
#define PROCPS_NG_TESTS_H
#include <stdio.h>
typedef int (*TestFunction)(void *data);
char *testname;
static inline int run_tests(TestFunction *list, void *data)
{
int i;
TestFunction current;
for (i=0; list[i] != NULL; i++) {
testname = NULL;
current = list[i];
if (!current(data)) {
fprintf(stderr, "FAIL: %s\n", testname);
return EXIT_FAILURE;
} else {
fprintf(stderr, "PASS: %s\n", testname);
}
}
return EXIT_SUCCESS;
}
#endif