summaryrefslogtreecommitdiff
path: root/test/locale-mbwc/tst_wcschr.c
blob: b57a05a8f9ab1ebd0dbb6108b635e60a453c92cb (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/*
  WCSCHR: wchar_t *wcschr (wchar_t *ws, wchar_t wc);
*/

#define TST_FUNCTION wcschr

#include "tsp_common.c"
#include "dat_wcschr.c"

int
tst_wcschr (FILE * fp, int debug_flg)
{
  TST_DECL_VARS (wchar_t *);
  wchar_t *ws, wc;

  TST_DO_TEST (wcschr)
  {
    TST_HEAD_LOCALE (wcschr, S_WCSCHR);
    TST_DO_REC (wcschr)
    {
      TST_GET_ERRET (wcschr);
      ws = TST_INPUT (wcschr).ws;	/* external value: size WCSSIZE */
      wc = TST_INPUT (wcschr).wc;
      ret = wcschr (ws, wc);

      if (debug_flg)
	{
	  if (ret)
	    {
	      fprintf (stderr, "wcschr: ret = 0x%lx\n",
		       (unsigned long int) *ret);
	    }
	  else
	    {
	      fprintf (stderr, "wcschr: ret = NULL pointer\n");
	    }
	}

      TST_IF_RETURN (S_WCSCHR)
      {
	if (ret == NULL)
	  {
	    if (debug_flg)
	      {
		fprintf (stderr, "*** Warning *** tst_wcschr: "
			 "set ret_flg=1 to check NULL return value\n");
	      }

	    warn_count++;
	    Result (C_INVALID, S_WCSCHR, CASE_3, "(check the test data) "
		    "set ret_flg=1 to check NULL return value");
	    continue;
	  }

	if (*ret == wc)
	  {
	    Result (C_SUCCESS, S_WCSCHR, CASE_3, MS_PASSED);
	  }
	else
	  {
	    err_count++;
	    Result (C_FAILURE, S_WCSCHR, CASE_3,
		    "the returned address of the string seems to be wrong");
	  }
      }
    }
  }

  return err_count;
}