mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-10 07:39:16 +00:00
ICU-7008 Skip testing Asia/Amman in VTimeZone round trip test for now.
X-SVN-Rev: 26154
This commit is contained in:
parent
34f50d9180
commit
6e5aa7bbd6
1 changed files with 8 additions and 0 deletions
|
@ -436,6 +436,10 @@ public class TimeZoneRuleTest extends TestFmwk {
|
|||
|
||||
String[] tzids = getTestZIDs();
|
||||
for (int i = 0; i < tzids.length; i++) {
|
||||
if (skipIfBeforeICU(4,3,1) && tzids[i].equals("Asia/Amman")) {
|
||||
// See #7008
|
||||
continue;
|
||||
}
|
||||
BasicTimeZone olsontz = (BasicTimeZone)TimeZone.getTimeZone(tzids[i], TimeZone.TIMEZONE_ICU);
|
||||
VTimeZone vtz_org = VTimeZone.create(tzids[i]);
|
||||
vtz_org.setTZURL("http://source.icu-project.org/timezone");
|
||||
|
@ -510,6 +514,10 @@ public class TimeZoneRuleTest extends TestFmwk {
|
|||
for (int n = 0; n < startTimes.length; n++) {
|
||||
long startTime = startTimes[n];
|
||||
for (int i = 0; i < tzids.length; i++) {
|
||||
if (skipIfBeforeICU(4,3,1) && tzids[i].equals("Asia/Amman")) {
|
||||
// See #7008
|
||||
continue;
|
||||
}
|
||||
BasicTimeZone olsontz = (BasicTimeZone)TimeZone.getTimeZone(tzids[i], TimeZone.TIMEZONE_ICU);
|
||||
VTimeZone vtz_org = VTimeZone.create(tzids[i]);
|
||||
VTimeZone vtz_new = null;
|
||||
|
|
Loading…
Add table
Reference in a new issue