mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-07 22:44:49 +00:00
ICU-3499 Remove bad formats.
X-SVN-Rev: 15600
This commit is contained in:
parent
438cb69708
commit
7f39c99522
2 changed files with 0 additions and 2 deletions
|
@ -959,7 +959,6 @@ static void TestFprintfFormat(void) {
|
|||
TestFPrintFormat("%08u", 123456, "%08u", 123456);
|
||||
TestFPrintFormat("%8u", -123456, "%8u", -123456);
|
||||
TestFPrintFormat("%-8u", -123456, "%-8u", -123456);
|
||||
TestFPrintFormat("%-08u", -123456, "%-08u", -123456);
|
||||
TestFPrintFormat("%.5u", 123456, "%.5u", 123456);
|
||||
TestFPrintFormat("%.6u", 123456, "%.6u", 123456);
|
||||
TestFPrintFormat("%.7u", 123456, "%.7u", 123456);
|
||||
|
|
|
@ -420,7 +420,6 @@ static void TestSprintfFormat(void) {
|
|||
TestSPrintFormat("%08u", 123456, "%08u", 123456);
|
||||
TestSPrintFormat("%8u", -123456, "%8u", -123456);
|
||||
TestSPrintFormat("%-8u", -123456, "%-8u", -123456);
|
||||
TestSPrintFormat("%-08u", -123456, "%-08u", -123456);
|
||||
TestSPrintFormat("%.5u", 123456, "%.5u", 123456);
|
||||
TestSPrintFormat("%.6u", 123456, "%.6u", 123456);
|
||||
TestSPrintFormat("%.7u", 123456, "%.7u", 123456);
|
||||
|
|
Loading…
Add table
Reference in a new issue