mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 14:05:32 +00:00
ICU-22274 Mark known issue for 3 timezones for EnvTest
tz2024a change "Asia/Qostanay" "Asia/Almaty" but test machines has not yet update their zoneinfo to 2024a so we mark them as known issues extern long timezone; in <time.h> (set man tzset on Linux shell) returns wrong value when TZ=America/Scoresbysund
This commit is contained in:
parent
71b9b88200
commit
37526240e1
1 changed files with 10 additions and 2 deletions
|
@ -156,10 +156,18 @@ TimeZoneTest::TestGenericAPI()
|
|||
// Africa/Casablanca Europe/Dublin America/Godthab America/Nuuk
|
||||
if (id == u"Africa/Casablanca" || id == u"Europe/Dublin" ||
|
||||
id == u"America/Godthab" || id == u"America/Nuuk" ||
|
||||
id == u"Africa/El_Aaiun") {
|
||||
id == u"Africa/El_Aaiun" ||
|
||||
id == u"Asia/Qostanay" || // Due to changes in tz2024a
|
||||
id == u"Asia/Almaty" || // Due to changes in tz2024a
|
||||
id == u"America/Scoresbysund" // break after the update of tz2023d
|
||||
) {
|
||||
logKnownIssue( "ICU-22274", "detectHostTimeZone()'s raw offset != host timezone's offset in TimeZone " + id);
|
||||
} else {
|
||||
errln("FAIL: detectHostTimeZone()'s raw offset != host timezone's offset");
|
||||
errln("FAIL: detectHostTimeZone()'s raw offset != host timezone's offset.\n"
|
||||
"hostZone->getRawOffset()=%d\n"
|
||||
"but uprv_timezone() return %d and "
|
||||
"uprv_timezone() * -1000=%d",
|
||||
hostZoneRawOffset, tzoffset, tzoffset * -1000);
|
||||
}
|
||||
}
|
||||
delete hostZone;
|
||||
|
|
Loading…
Add table
Reference in a new issue