diff options
Diffstat (limited to 'posix')
-rw-r--r-- | posix/tst-fnmatch.c | 7 | ||||
-rw-r--r-- | posix/tst-getlogin.c | 7 | ||||
-rw-r--r-- | posix/tst-gnuglob.c | 7 | ||||
-rw-r--r-- | posix/tst-mmap.c | 7 |
4 files changed, 20 insertions, 8 deletions
diff --git a/posix/tst-fnmatch.c b/posix/tst-fnmatch.c index ff2674cd73..021734d754 100644 --- a/posix/tst-fnmatch.c +++ b/posix/tst-fnmatch.c @@ -33,8 +33,8 @@ static char *flag_output (int flags); static char *escape (const char *str, size_t *reslenp, char **resbuf); -int -main (void) +static int +do_test (void) { char *linebuf = NULL; size_t linebuflen = 0; @@ -388,3 +388,6 @@ escape (const char *str, size_t *reslenp, char **resbufp) return resbuf; } + +#define TEST_FUNCTION do_test () +#include "../test-skeleton.c" diff --git a/posix/tst-getlogin.c b/posix/tst-getlogin.c index 1393c3a779..141a6996a2 100644 --- a/posix/tst-getlogin.c +++ b/posix/tst-getlogin.c @@ -19,8 +19,8 @@ #include <stdio.h> #include <string.h> -int -main (void) +static int +do_test (void) { char *login; int errors = 0; @@ -55,3 +55,6 @@ main (void) return errors != 0; } + +#define TEST_FUNCTION do_test () +#include "../test-skeleton.c" diff --git a/posix/tst-gnuglob.c b/posix/tst-gnuglob.c index 1c72357de3..39b5b24cf5 100644 --- a/posix/tst-gnuglob.c +++ b/posix/tst-gnuglob.c @@ -379,8 +379,8 @@ test_result (const char *fmt, int flags, glob_t *gl, const char *str[]) } -int -main (void) +static int +do_test (void) { glob_t gl; int errval; @@ -497,3 +497,6 @@ main (void) return result; } + +#define TEST_FUNCTION do_test () +#include "../test-skeleton.c" diff --git a/posix/tst-mmap.c b/posix/tst-mmap.c index c03acf5e16..5e52b49e35 100644 --- a/posix/tst-mmap.c +++ b/posix/tst-mmap.c @@ -6,8 +6,8 @@ #include <sys/mman.h> -int -main (void) +static int +do_test (void) { int result = 0; FILE *fp; @@ -195,3 +195,6 @@ main (void) /* That's it. */ return result; } + +#define TEST_FUNCTION do_test () +#include "../test-skeleton.c" |