about summary refs log tree commit diff
path: root/iconv/tst-iconv3.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@hack.frob.com>2015-02-25 16:01:13 -0800
committerRoland McGrath <roland@hack.frob.com>2015-02-25 16:01:13 -0800
commitca681b7b7b79bea3af62fe709df6594f3f5457e6 (patch)
tree69265a0eee472d9b15d9c238ed2d0eb216af0b89 /iconv/tst-iconv3.c
parentfd1f2f1c3de842b84a0ee9667c3172b2169f1b10 (diff)
downloadglibc-ca681b7b7b79bea3af62fe709df6594f3f5457e6.tar.gz
glibc-ca681b7b7b79bea3af62fe709df6594f3f5457e6.tar.xz
glibc-ca681b7b7b79bea3af62fe709df6594f3f5457e6.zip
Convert tst-iconv3 to use test-skeleton.
Diffstat (limited to 'iconv/tst-iconv3.c')
-rw-r--r--iconv/tst-iconv3.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/iconv/tst-iconv3.c b/iconv/tst-iconv3.c
index f31c8129d7..b06f75f0bc 100644
--- a/iconv/tst-iconv3.c
+++ b/iconv/tst-iconv3.c
@@ -7,8 +7,8 @@
 
 #define BUFSIZE 10000
 
-int
-main (int argc, char *argv[])
+static int
+do_test (void)
 {
   char inbuf[BUFSIZE];
   wchar_t outbuf[BUFSIZE];
@@ -51,3 +51,6 @@ main (int argc, char *argv[])
 
   return result;
 }
+
+#define TEST_FUNCTION do_test ()
+#include "../test-skeleton.c"