File: dat_wcstod.c

package info (click to toggle)
glibc 2.19-18
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports, jessie-kfreebsd
  • size: 203,628 kB
  • sloc: ansic: 969,800; asm: 241,205; sh: 10,063; makefile: 8,471; cpp: 3,595; perl: 2,077; pascal: 1,839; awk: 1,704; yacc: 317; sed: 73
file content (74 lines) | stat: -rw-r--r-- 1,265 bytes parent folder | download | duplicates (44)
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
/*
 *  TEST SUITE FOR MB/WC FUNCTIONS IN CLIBRARY
 *
 *	 FILE:	dat_wcstod.c
 *
 *	 WCSTOD:  double wcstod (const wchar_t *np, wchar_t **endp);
 */


/*
 *  NOTE:
 *	  need more test data!
 *
 */


TST_WCSTOD tst_wcstod_loc [] = {
  {
    { Twcstod, TST_LOC_de },
    {
      {
	/*01*/
	/*I*/
	{{ 0x0030,0x0030,0x0030,0x002C,0x0030,0x0030,0x0030,0x0030,0x0000 }},
	/*E*/
	{ 0,1,0.0,	       0.0,				  0x0000   }
      },
      {
	/*02*/
	/*I*/
	{{ 0x0031,0x0032,0x0033,0x002C,0x0034,0x0035,0x0036,0x0040,0x0000 }},
	/*E*/
	{ 0,1,123.456,	       123.456,			   0x0040  }
      },
      { .is_last = 1 }
    }
  },
  {
    { Twcstod, TST_LOC_enUS },
    {
      {
	/*01*/
	/*I*/
	{{ 0x0030,0x0030,0x0030,0x002E,0x0030,0x0030,0x0030,0x0030,0x0000 }},
	/*E*/
	{ 0,1,0.0,	       0.0,				  0x0000   }
      },
      {
	/*02*/
	/*I*/
	{{ 0x0031,0x0032,0x0033,0x002E,0x0034,0x0035,0x0036,0x0040,0x0000 }},
	/*E*/
	{ 0,1,123.456,	       123.456,			   0x0040  }
      },
      { .is_last = 1 }
    }
  },
  {
    { Twcstod, TST_LOC_eucJP },
    {
      {
	/*01*/
	/*I*/
	{{ 0x0031,0x0032,0x0033,0x002E,0x0034,0x0035,0x0036,0x0040,0x0000 }},
	/*E*/
	{ 0,1,123.456,	       123.456,			   0x0040  }
      },
      { .is_last = 1 }
    }
  },
  {
    { Twcstod, TST_LOC_end }
  }
};