about summary refs log tree commit diff
path: root/wctype/test_wctype.c
diff options
context:
space:
mode:
Diffstat (limited to 'wctype/test_wctype.c')
-rw-r--r--wctype/test_wctype.c22
1 files changed, 15 insertions, 7 deletions
diff --git a/wctype/test_wctype.c b/wctype/test_wctype.c
index 300b86972d..1c9bf5aa3b 100644
--- a/wctype/test_wctype.c
+++ b/wctype/test_wctype.c
@@ -46,14 +46,22 @@ main (int argc, char *argv[])
 
   for (ch = 0; ch < 256; ++ch)
     {
-#define TEST(test)							      \
+#define TEST(test) \
       do								      \
-	if ((is##test (ch) == 0) != (iswctype (ch, bit_##test) == 0))	      \
-	  {								      \
-	    printf ("class `%s' test for character \\%o failed\n",	      \
-		    #test, ch);						      \
-	    result = 1;							      \
-	  }								      \
+	{								      \
+	  if ((is##test (ch) == 0) != (iswctype (ch, bit_##test) == 0))	      \
+	    {								      \
+	      printf ("`iswctype' class `%s' test "			      \
+		      "for character \\%o failed\n", #test, ch);	      \
+	      result = 1;						      \
+	    }								      \
+	  if ((is##test (ch) == 0) != (isw##test (ch) == 0))		      \
+	    {								      \
+	      printf ("`isw%s' test for character \\%o failed\n",	      \
+		      #test, ch);					      \
+	      result = 1;						      \
+	    }								      \
+	 }								      \
       while (0)
 
       TEST (alnum);