diff options
Diffstat (limited to 'posix/tst-gnuglob.c')
-rw-r--r-- | posix/tst-gnuglob.c | 7 |
1 files changed, 5 insertions, 2 deletions
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" |