File: dat_towctrans.c

package info (click to toggle)
glibc 2.41-9
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 300,164 kB
  • sloc: ansic: 1,050,507; asm: 238,242; makefile: 20,378; python: 13,537; sh: 11,812; cpp: 5,197; awk: 1,795; perl: 317; yacc: 292; pascal: 182; sed: 19
file content (81 lines) | stat: -rw-r--r-- 2,369 bytes parent folder | download | duplicates (26)
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
71
72
73
74
75
76
77
78
79
80
81
/*
 *  TEST SUITE FOR MB/WC FUNCTIONS IN C LIBRARY
 *
 *	 FILE:	dat_towctrans.c
 *
 *	 TOWCTRANS:  wint_t towctrans (wint_t wc, wctrans_t charclass);
 */

#include <errno.h>
#include <stdlib.h>
#include <wctype.h>
#include "tst_types.h"
#include "tgn_locdef.h"

/*
 *  NOTE:
 *    Set ret_flg = 1, when a return value is expected to be 0 (FALSE).
 *    Set ret_flg = 0, when a return value is expected to be non-zero (TRUE).
 *
 *    Since the functions return *non*-zero value for TRUE, can't
 *    compare an actual return value with an expected return value.
 *    Set the ret_flg=0 for TRUE cases and the tst_isw*() will check
 *    the non-zero value.
 *
 *  { { WEOF }, { 0,0,1,0 } },
 *		      | |
 *		      | ret_val: an expected return value
 *		      ret_flg: if 1, compare an actual return value with the
 *			       ret_val; if 0, the test program checks
 *			       the actual return value.
 *
 *    CAUTION: if a charclass is invalid, the test function gives
 *    towctrans() an invalid wctrans object instead of a return value
 *    from wctrans() which is supposed to be 0.
 */

TST_TOWCTRANS tst_towctrans_loc [] = {
  {
    { Ttowctrans, TST_LOC_C },
    {
      {	 { 0x0010, "xxxxxxx" }, { 0,     1,0x0010 }  },
      {	 { 0x007F, "tolower" }, { 0,	   1,0x007F }  },
      {	 { 0x0061, "toupper" }, { 0,	   1,0x0041 }  },
      {	 { 0x0041, "tolower" }, { 0,	   1,0x0061 }  },
      { .is_last = 1 }
    }
  },
  {
    { Ttowctrans, TST_LOC_de },
    {
      {	 { 0x0010, "tojkata" }, { 0,     1,0x0010 }  },
      {	 { 0x0080, "tolower" }, { 0,	   1,0x0080 }  },
      {	 { 0x00EC, "toupper" }, { 0,	   1,0x00CC }  },
      {	 { 0x00CC, "tolower" }, { 0,	   1,0x00EC }  },
      { .is_last = 1 }
    }
  },
  {
    { Ttowctrans, TST_LOC_enUS },
    {
      {	 { 0x0010, "xxxxxxx" }, { 0,     1,0x0010 }  },
      {	 { 0x007F, "tolower" }, { 0,	   1,0x007F }  },
      {	 { 0x0061, "toupper" }, { 0,	   1,0x0041 }  },
      {	 { 0x0041, "tolower" }, { 0,	   1,0x0061 }  },
      { .is_last = 1 }
    }
  },
  {
    { Ttowctrans, TST_LOC_eucJP },
    {
      {	 { 0xFF21, "tolower" }, { 0,	   1,0xFF41 }  },
      {	 { 0xFF41, "toupper" }, { 0,	   1,0xFF21 }  },
      {	 { 0x30A1, "tojhira" }, { 0,	   1,0x3041 }  },
      {	 { 0x3041, "tojkata" }, { 0,	   1,0x30A1 }  },
      { .is_last = 1 }
    }
  },
  {
    { Ttowctrans, TST_LOC_end }
  }
};