mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 14:05:32 +00:00
ICU-21122 Fix flaky TestAdoptCalendarLeak
This commit is contained in:
parent
d7ec310436
commit
41d1d57af0
1 changed files with 7 additions and 2 deletions
|
@ -5576,14 +5576,19 @@ void DateFormatTest::TestAdoptCalendarLeak() {
|
|||
UErrorCode status = U_ZERO_ERROR;
|
||||
// This test relies on the locale fullName exceeding ULOC_FULLNAME_CAPACITY
|
||||
// in order for setKeywordValue to fail.
|
||||
Calendar* cal = Calendar::createInstance(status);
|
||||
ASSERT_OK(status);
|
||||
SimpleDateFormat sdf(
|
||||
"d.M.y",
|
||||
Locale("de__POSIX@colstrength=primary;currency=eur;em=default;"
|
||||
"hours=h23;lb=strict;lw=normal;measure=metric;numbers=latn;"
|
||||
"rg=atzzzz;sd=atat1;ss=none;timezone=Europe/Vienna"),
|
||||
status);
|
||||
ASSERT_OK(status);
|
||||
sdf.adoptCalendar(Calendar::createInstance(status));
|
||||
// ASSERT_OK(status); Please do NOT add ASSERT_OK here. The point of this
|
||||
// test is to ensure sdf.adoptCalendar won't leak AFTER the above FAILED.
|
||||
// If the following caused crash we should fix the implementation not change
|
||||
// this test.
|
||||
sdf.adoptCalendar(cal);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue