summaryrefslogtreecommitdiff
path: root/test/locale-mbwc/tst_iswctype.c
blob: 3e79e092dfe690eb3327cf900fc0083beeac3d1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*
  ISWCTYPE: int iswctype (wint_t wc, wctype_t desc);
*/

#define TST_FUNCTION iswctype

#include "tsp_common.c"
#include "dat_iswctype.c"


int
tst_iswctype (FILE *fp, int debug_flg)
{
  TST_DECL_VARS (int);
  wint_t wc;
  const char *ts;

  TST_DO_TEST (iswctype)
    {
      TST_HEAD_LOCALE (iswctype, S_ISWCTYPE);
      TST_DO_REC (iswctype)
	{
	  TST_GET_ERRET (iswctype);
	  wc = TST_INPUT (iswctype).wc;
	  ts = TST_INPUT (iswctype).ts;
	  ret = iswctype (wc, wctype (ts));
	  TST_SAVE_ERRNO;
	  if (debug_flg)
	    {
	      fprintf (stdout, "iswctype() [ %s : %d ] ret = %d\n",
		       locale, rec+1, ret);
	    }

	  TST_IF_RETURN (S_ISWCTYPE)
	    {
	      if (ret != 0)
		{
		  result (fp, C_SUCCESS, S_ISWCTYPE, locale, rec+1,
			  seq_num+1, 3, MS_PASSED);
		}
	      else
		{
		  err_count++;
		  result (fp, C_FAILURE, S_ISWCTYPE, locale, rec+1,
			  seq_num+1, 3,
			  "the function returned 0, but should be non-zero");
		}
	    }
	}
    }

  return err_count;
}