ICU-13366 spin off the remaining tz offset roundtrip and number roundtrip issues to #13390, 13391; update logKnownIssue

X-SVN-Rev: 40537
This commit is contained in:
Peter Edberg 2017-10-03 23:20:18 +00:00
parent 0065725adc
commit 9d44026761
3 changed files with 3 additions and 3 deletions

View file

@ -123,7 +123,7 @@ NumberFormatRoundTripTest::start()
logln("Quick mode: only testing first 5 Locales");
}
for(int i = 0; i < locCount; ++i) {
if (uprv_strcmp(loc[i].getLanguage(),"ccp")==0 && logKnownIssue("13366", "Skip handling ccp until NumberFormat parsing is fixed")) {
if (uprv_strcmp(loc[i].getLanguage(),"ccp")==0 && logKnownIssue("13391", "Skip handling ccp until NumberFormat parsing is fixed")) {
continue;
}
UnicodeString name;

View file

@ -442,7 +442,7 @@ void IntlTestNumberFormat::monsterTest(/* char* par */)
}
for (int32_t i=0; i<count; ++i)
{
if (uprv_strcmp(locales[i].getLanguage(),"ccp")==0 && logKnownIssue("13366", "Skip handling ccp until NumberFormat parsing is fixed")) {
if (uprv_strcmp(locales[i].getLanguage(),"ccp")==0 && logKnownIssue("13391", "Skip handling ccp until NumberFormat parsing is fixed")) {
continue;
}
UnicodeString name(locales[i].getName(), "");

View file

@ -172,7 +172,7 @@ TimeZoneFormatTest::TestTimeZoneRoundTrip(void) {
for (int32_t patidx = 0; patidx < UPRV_LENGTHOF(PATTERNS); patidx++) {
if (uprv_strcmp(LOCALES[locidx].getLanguage(),"ccp")==0 && (PATTERNS[patidx][0]==0x7A || PATTERNS[patidx][0]==0x76) &&
logKnownIssue("13366", "Skip handling ccp until TimeZone offset roundtrip is fixed")) {
logKnownIssue("13390", "Skip handling ccp until TimeZone offset roundtrip is fixed")) {
continue;
}
SimpleDateFormat *sdf = new SimpleDateFormat((UnicodeString)PATTERNS[patidx], LOCALES[locidx], status);