dat_wctype.c 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. /*
  2. * TEST SUITE FOR MB/WC FUNCTIONS IN CLIBRARY
  3. *
  4. * FILE: dat_wctype.c
  5. *
  6. * WCTYPE: wctype_t wctype( const char *class );
  7. */
  8. /*
  9. * NOTE:
  10. * When a return value is expected to be 0 (false),
  11. * set ret_flg=1 and set ret_val=0.
  12. * Otherwise just set ret_flg=0.
  13. */
  14. TST_WCTYPE tst_wctype_loc [] = {
  15. { { Twctype, TST_LOC_de },
  16. {
  17. { /*inp*/ { "alnum" }, /* #01 */
  18. /*exp*/ { 0,0,0, },
  19. },
  20. { /*inp*/ { "alpha" }, /* #02 */
  21. /*exp*/ { 0,0,0, },
  22. },
  23. { /*inp*/ { "cntrl" }, /* #03 */
  24. /*exp*/ { 0,0,0, },
  25. },
  26. { /*inp*/ { "digit" }, /* #04 */
  27. /*exp*/ { 0,0,0, },
  28. },
  29. { /*inp*/ { "graph" }, /* #05 */
  30. /*exp*/ { 0,0,0, },
  31. },
  32. { /*inp*/ { "lower" }, /* #06 */
  33. /*exp*/ { 0,0,0, },
  34. },
  35. { /*inp*/ { "print" }, /* #07 */
  36. /*exp*/ { 0,0,0, },
  37. },
  38. { /*inp*/ { "punct" }, /* #08 */
  39. /*exp*/ { 0,0,0, },
  40. },
  41. { /*inp*/ { "space" }, /* #09 */
  42. /*exp*/ { 0,0,0, },
  43. },
  44. { /*inp*/ { "upper" }, /* #10 */
  45. /*exp*/ { 0,0,0, },
  46. },
  47. { /*inp*/ { "xdigit" }, /* #11 */
  48. /*exp*/ { 0,0,0, },
  49. },
  50. { /*inp*/ { "" }, /* #12 */
  51. /*exp*/ { 0,1,0, },
  52. },
  53. { /*inp*/ { "ideograph" }, /* #13 */
  54. /*exp*/ { 0,1,0, },
  55. },
  56. { /*inp*/ { "english" }, /* #14 */
  57. /*exp*/ { 0,1,0, },
  58. },
  59. { /*inp*/ { "ascii" }, /* #15 */
  60. /*exp*/ { 0,1,0, },
  61. },
  62. { /*inp*/ { "special" }, /* #16 */
  63. /*exp*/ { 0,1,0, },
  64. },
  65. { .is_last = 1 }
  66. }
  67. },
  68. { { Twctype, TST_LOC_enUS },
  69. {
  70. { /*inp*/ { "alnum" }, /* #01 */
  71. /*exp*/ { 0,0,0, },
  72. },
  73. { /*inp*/ { "alpha" }, /* #02 */
  74. /*exp*/ { 0,0,0, },
  75. },
  76. { /*inp*/ { "cntrl" }, /* #03 */
  77. /*exp*/ { 0,0,0, },
  78. },
  79. { /*inp*/ { "digit" }, /* #04 */
  80. /*exp*/ { 0,0,0, },
  81. },
  82. { /*inp*/ { "graph" }, /* #05 */
  83. /*exp*/ { 0,0,0, },
  84. },
  85. { /*inp*/ { "lower" }, /* #06 */
  86. /*exp*/ { 0,0,0, },
  87. },
  88. { /*inp*/ { "print" }, /* #07 */
  89. /*exp*/ { 0,0,0, },
  90. },
  91. { /*inp*/ { "punct" }, /* #08 */
  92. /*exp*/ { 0,0,0, },
  93. },
  94. { /*inp*/ { "space" }, /* #09 */
  95. /*exp*/ { 0,0,0, },
  96. },
  97. { /*inp*/ { "upper" }, /* #10 */
  98. /*exp*/ { 0,0,0, },
  99. },
  100. { /*inp*/ { "xdigit" }, /* #11 */
  101. /*exp*/ { 0,0,0, },
  102. },
  103. { /*inp*/ { "" }, /* #12 */
  104. /*exp*/ { 0,1,0, },
  105. },
  106. { /*inp*/ { "ideograph" }, /* #13 */
  107. /*exp*/ { 0,1,0, },
  108. },
  109. { /*inp*/ { "english" }, /* #14 */
  110. /*exp*/ { 0,1,0, },
  111. },
  112. { /*inp*/ { "ascii" }, /* #15 */
  113. /*exp*/ { 0,1,0, },
  114. },
  115. { /*inp*/ { "special" }, /* #16 */
  116. /*exp*/ { 0,1,0, },
  117. },
  118. { .is_last = 1 }
  119. }
  120. },
  121. #if 0
  122. { { Twctype, TST_LOC_eucJP },
  123. #else
  124. { { Twctype, TST_LOC_ja_UTF8 },
  125. #endif
  126. {
  127. { /*inp*/ { "alnum" }, /* #01 */
  128. /*exp*/ { 0,0,0, },
  129. },
  130. { /*inp*/ { "alpha" }, /* #02 */
  131. /*exp*/ { 0,0,0, },
  132. },
  133. { /*inp*/ { "cntrl" }, /* #03 */
  134. /*exp*/ { 0,0,0, },
  135. },
  136. { /*inp*/ { "digit" }, /* #04 */
  137. /*exp*/ { 0,0,0, },
  138. },
  139. { /*inp*/ { "graph" }, /* #05 */
  140. /*exp*/ { 0,0,0, },
  141. },
  142. { /*inp*/ { "lower" }, /* #06 */
  143. /*exp*/ { 0,0,0, },
  144. },
  145. { /*inp*/ { "print" }, /* #07 */
  146. /*exp*/ { 0,0,0, },
  147. },
  148. { /*inp*/ { "punct" }, /* #08 */
  149. /*exp*/ { 0,0,0, },
  150. },
  151. { /*inp*/ { "space" }, /* #09 */
  152. /*exp*/ { 0,0,0, },
  153. },
  154. { /*inp*/ { "upper" }, /* #10 */
  155. /*exp*/ { 0,0,0, },
  156. },
  157. { /*inp*/ { "xdigit" }, /* #11 */
  158. /*exp*/ { 0,0,0, },
  159. },
  160. { /*inp*/ { "ideogram" }, /* #12 */
  161. /*exp*/ { 0,1,0, },
  162. },
  163. { /*inp*/ { "phonogram" }, /* #13 */
  164. /*exp*/ { 0,1,0, },
  165. },
  166. { /*inp*/ { "jspace" }, /* #14 */
  167. /*exp*/ { 0,0,0, },
  168. },
  169. { /*inp*/ { "jhira" }, /* #15 */
  170. /*exp*/ { 0,0,0, },
  171. },
  172. { /*inp*/ { "jkata" }, /* #16 */
  173. /*exp*/ { 0,0,0, },
  174. },
  175. { /*inp*/ { "jkanji" }, /* #17 */
  176. /*exp*/ { 0,0,0, },
  177. },
  178. { /*inp*/ { "jdigit" }, /* #18 */
  179. /*exp*/ { 0,0,0, },
  180. },
  181. { .is_last = 1 }
  182. }
  183. },
  184. { { Twctype, TST_LOC_end }}
  185. };