ICU-66 Leak less memory

X-SVN-Rev: 3815
This commit is contained in:
George Rhoten 2001-02-28 01:47:51 +00:00
parent 6472679c25
commit 1d8ba663de
2 changed files with 31 additions and 16 deletions

View file

@ -72,8 +72,9 @@ void CalendarTimeZoneTest::releaseDateFormat(DateFormat *adopt)
adopt = 0;
}
}
delete adopt;
else {
delete adopt;
}
}
Calendar* CalendarTimeZoneTest::getCalendar()
@ -117,8 +118,10 @@ void CalendarTimeZoneTest::releaseCalendar(Calendar* adopt)
adopt = 0;
}
}
delete adopt;
else
{
delete adopt;
}
}
// Utility method for formatting dates for printing; useful for Java->C++ conversion.

View file

@ -107,12 +107,12 @@ param[] =
// "IN" means inherits
// "NE" or "ne" means "does not exist"
{ "root", 0, U_ZERO_ERROR, e_Root, { TRUE, FALSE, FALSE }, { TRUE, FALSE, FALSE } },
{ "te", 0, U_ZERO_ERROR, e_te, { FALSE, TRUE, FALSE }, { TRUE, TRUE, FALSE } },
{ "te_IN", 0, U_ZERO_ERROR, e_te_IN, { FALSE, FALSE, TRUE }, { TRUE, TRUE, TRUE } },
{ "te_NE", 0, U_USING_FALLBACK_ERROR, e_te, { FALSE, TRUE, FALSE }, { TRUE, TRUE, FALSE } },
{ "te_IN_NE", 0, U_USING_FALLBACK_ERROR, e_te_IN, { FALSE, FALSE, TRUE }, { TRUE, TRUE, TRUE } },
{ "ne", 0, U_USING_DEFAULT_ERROR, e_Root, { TRUE, FALSE, FALSE }, { TRUE, FALSE, FALSE } }
{ "root", NULL, U_ZERO_ERROR, e_Root, { TRUE, FALSE, FALSE }, { TRUE, FALSE, FALSE } },
{ "te", NULL, U_ZERO_ERROR, e_te, { FALSE, TRUE, FALSE }, { TRUE, TRUE, FALSE } },
{ "te_IN", NULL, U_ZERO_ERROR, e_te_IN, { FALSE, FALSE, TRUE }, { TRUE, TRUE, TRUE } },
{ "te_NE", NULL, U_USING_FALLBACK_ERROR, e_te, { FALSE, TRUE, FALSE }, { TRUE, TRUE, FALSE } },
{ "te_IN_NE", NULL, U_USING_FALLBACK_ERROR, e_te_IN, { FALSE, FALSE, TRUE }, { TRUE, TRUE, TRUE } },
{ "ne", NULL, U_USING_DEFAULT_ERROR, e_Root, { TRUE, FALSE, FALSE }, { TRUE, FALSE, FALSE } }
};
int32_t bundles_count = sizeof(param) / sizeof(param[0]);
@ -158,21 +158,33 @@ int32_t randi(int32_t n)
//***************************************************************************************
/*
Don't use more than one of these at a time because of the Locale names
*/
ResourceBundleTest::ResourceBundleTest()
: pass(0),
fail(0),
OUT(it_out)
{
param[0].locale = new Locale("root");
param[1].locale = new Locale("te");
param[2].locale = new Locale("te", "IN");
param[3].locale = new Locale("te", "NE");
param[4].locale = new Locale("te", "IN", "NE");
param[5].locale = new Locale("ne");
if (param[5].locale == NULL) {
param[0].locale = new Locale("root");
param[1].locale = new Locale("te");
param[2].locale = new Locale("te", "IN");
param[3].locale = new Locale("te", "NE");
param[4].locale = new Locale("te", "IN", "NE");
param[5].locale = new Locale("ne");
}
}
ResourceBundleTest::~ResourceBundleTest()
{
if (param[5].locale) {
int idx;
for (idx = 0; idx < (int)(sizeof(param)/sizeof(param[0])); idx++) {
delete param[idx].locale;
param[idx].locale = NULL;
}
}
}
void ResourceBundleTest::runIndexedTest( int32_t index, UBool exec, const char* &name, char* /*par*/ )