mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-07 22:44:49 +00:00
ICU-4605 Increase code coverage.
X-SVN-Rev: 18081
This commit is contained in:
parent
cee8cfb8c3
commit
cd29a6a27f
1 changed files with 8 additions and 0 deletions
8
icu4c/source/test/testdata/icuio.txt
vendored
8
icu4c/source/test/testdata/icuio.txt
vendored
|
@ -86,6 +86,7 @@ icuio {
|
|||
{ "%.0e", "-1e+001", "d", "-12.34" }
|
||||
{ "%.0g", "-1e+001", "d", "-12.34" }
|
||||
{ "%hd", "-30002", "2", "8ace" }
|
||||
{ "%hu", "35534", "2", "8ace" }
|
||||
{ "%ho", "105316", "2", "8ace" }
|
||||
{ "%hx", "8ace", "2", "8ace" }
|
||||
{ "%lx", "8ace1234", "4", "8ace1234" }
|
||||
|
@ -123,7 +124,14 @@ icuio {
|
|||
{ "%lld", "1311768467463790320", "8", "123456789abcdef0" }
|
||||
{ "%3d", "1234 5678", "4", "7B" }
|
||||
{ "%4d", "123", "4", "7B" }
|
||||
{ "%2d", "123", "4", "C" }
|
||||
{ "%40d", "123", "4", "7B" }
|
||||
{ "%2e", "1.25", "d", "1" }
|
||||
{ "%2f", "1.25", "d", "1" }
|
||||
{ "%2g", "1.25", "d", "1" }
|
||||
{ "%*2e%2e", "1.25", "d", "25" }
|
||||
{ "%*2f%2f", "1.25", "d", "25" }
|
||||
{ "%*2g%2g", "1.25", "d", "25" }
|
||||
{ "%*d%d", "1234 5678", "4", "162E" }
|
||||
{ "%x", "abcd ef01", "4", "abcd" }
|
||||
{ "%3x", "abcd ef01", "4", "abc" }
|
||||
|
|
Loading…
Add table
Reference in a new issue