diff options
author | Arjun Shankar <arjun.is@lostca.se> | 2014-12-16 15:21:01 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@redhat.com> | 2014-12-16 16:55:23 +0530 |
commit | 8b460906cdb8ef1501fa5dcff54206b201e527d5 (patch) | |
tree | 15471573da8bdf544d6c776aa2a8b03d91da9274 /libio/tst-fopenloc.c | |
parent | fa13e15b9a5cc49c9c6dee33084c3ff54d48e50e (diff) | |
download | glibc-8b460906cdb8ef1501fa5dcff54206b201e527d5.zip glibc-8b460906cdb8ef1501fa5dcff54206b201e527d5.tar.gz glibc-8b460906cdb8ef1501fa5dcff54206b201e527d5.tar.bz2 |
Modify libio/tst-fopenloc.c to use test-skeleton.c
This test would earlier fail when run under test-skeleton.c due to
bug #17522 in 'fputws'. That bug is now fixed and so this test may
be modified.
Diffstat (limited to 'libio/tst-fopenloc.c')
-rw-r--r-- | libio/tst-fopenloc.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/libio/tst-fopenloc.c b/libio/tst-fopenloc.c index 8fe83fd..140d976 100644 --- a/libio/tst-fopenloc.c +++ b/libio/tst-fopenloc.c @@ -29,8 +29,8 @@ static const char inputfile[] = "../iconvdata/testdata/ISO-8859-1"; -int -main (void) +static int +do_test (void) { FILE *fp; @@ -59,3 +59,6 @@ main (void) return 0; } + +#define TEST_FUNCTION do_test () +#include "../test-skeleton.c" |