summaryrefslogtreecommitdiff
path: root/libio
diff options
context:
space:
mode:
authorArjun Shankar <arjun.is@lostca.se>2014-12-16 15:21:01 +0530
committerSiddhesh Poyarekar <siddhesh@redhat.com>2014-12-16 16:55:23 +0530
commit8b460906cdb8ef1501fa5dcff54206b201e527d5 (patch)
tree15471573da8bdf544d6c776aa2a8b03d91da9274 /libio
parentfa13e15b9a5cc49c9c6dee33084c3ff54d48e50e (diff)
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')
-rw-r--r--libio/tst-fopenloc.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/libio/tst-fopenloc.c b/libio/tst-fopenloc.c
index 8fe83fd5c8..140d9762f9 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"