mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-06 13:20:06 +00:00
5ca8accdcd
(tst_mbrtowc-ENV): New. (tst_mbsrtowcs-ENV): New. (tst_mbstowcs-ENV): New. (tst_strfmon-ENV): New. (tst_wcrtomb-ENV): New. (tst_wcsrtombs-ENV): New. (tst_wcstod-ENV): New. (tst_wcstok-ENV): New. (tst_wcstombs-ENV): New. * tests-mbwc/dat_wcstok.c: Likewise. * tests-mbwc/tst_wcstok.c: Likewise. * tests-mbwc/dat_wcstod.c: Likewise. * tests-mbwc/tst_wcstod.c: Likewise. * tests-mbwc/dat_mbrtowc.c: Likewise. * tests-mbwc/tst_mbrtowc.c: Likewise. * tests-mbwc/dat_wcsrtombs.c: Likewise. * tests-mbwc/tst_wcsrtombs.c: Likewise. * tests-mbwc/dat_wcstombs.c: Likewise. * tests-mbwc/tst_wcstombs.c: Likewise. * tests-mbwc/dat_mbsrtowcs.c: Likewise. * tests-mbwc/tst_mbsrtowcs.c: Likewise. * tests-mbwc/dat_wcrtomb.c: Likewise. * tests-mbwc/tst_wcrtomb.c: Likewise. * tests-mbwc/dat_mbstowcs.c: Likewise. * tests-mbwc/tst_mbstowcs.c: Likewise. * tests-mbwc/dat_strfmon.c: Likewise. * tests-mbwc/tst_strfmon.c: Likewise.
75 lines
1.2 KiB
C
75 lines
1.2 KiB
C
/*
|
|
* 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,0,1,0.0, 0.0, 0x0000 }
|
|
},
|
|
{
|
|
/*02*/
|
|
/*I*/
|
|
{{ 0x0031,0x0032,0x0033,0x002C,0x0034,0x0035,0x0036,0x0040,0x0000 }},
|
|
/*E*/
|
|
{ 0,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,0,1,0.0, 0.0, 0x0000 }
|
|
},
|
|
{
|
|
/*02*/
|
|
/*I*/
|
|
{{ 0x0031,0x0032,0x0033,0x002E,0x0034,0x0035,0x0036,0x0040,0x0000 }},
|
|
/*E*/
|
|
{ 0,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,0,1,123.456, 123.456, 0x0040 }
|
|
},
|
|
{ is_last: 1 }
|
|
}
|
|
},
|
|
{
|
|
{ Twcstod, TST_LOC_end }
|
|
}
|
|
};
|