ICU-3659 temporarily disable...

X-SVN-Rev: 15498
This commit is contained in:
Alan Liu 2004-05-24 17:36:53 +00:00
parent 3a74c75e2f
commit 0bfd502d22
2 changed files with 10 additions and 0 deletions

View File

@ -582,10 +582,15 @@ SimpleDateFormat::subFormat(UnicodeString &appendTo,
if (U_FAILURE(status)) {
return;
}
// TEMPORARILY DISABLE
// TEMPORARILY DISABLE
// TEMPORARILY DISABLE
#if 0
// assert values are in range before using them to index arrays
U_ASSERT(field == UDAT_YEAR_FIELD || field == UDAT_YEAR_WOY_FIELD ||
(value >= cal.getMinimum(field) &&
value <= cal.getMaximum(field)));
#endif
switch (patternCharIndex) {

View File

@ -886,7 +886,12 @@ static void TestExtremeDates() {
0, 0, 0, 0, &ec);
if (!assertSuccess("udat_open", &ec)) return;
// TEMPORARILY DISABLE
// TEMPORARILY DISABLE
// TEMPORARILY DISABLE
#if 0
_aux2ExtremeDates(fmt, small, large, buf, LEN(buf), cbuf, 0, &ec);
#endif
udat_close(fmt);
}