ICU-7008 Skip testing Asia/Amman in VTimeZone round trip test for now.

X-SVN-Rev: 26154
This commit is contained in:
Yoshito Umaoka 2009-06-24 03:28:14 +00:00
parent 34f50d9180
commit 6e5aa7bbd6

View file

@ -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;