[COMMITTED] Convert tst-iconv3 to use test-skeleton.

Message ID 20150226000331.9636A2C3ADB@topped-with-meat.com
State Committed
Headers

Commit Message

Roland McGrath Feb. 26, 2015, 12:03 a.m. UTC
  Tested x86_64-linux-gnu.


Thanks,
Roland


	* iconv/tst-iconv3.c (main): Converted to ...
	(do_test): ... this.
	(TEST_FUNCTION): New macro.
	Include test-skeleton.c.
  

Patch

--- 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"