ICU-3050 fix memory leaks in the test

X-SVN-Rev: 12705
This commit is contained in:
Ram Viswanadha 2003-07-28 23:48:47 +00:00
parent 26372d2c88
commit 2353dfaf78
3 changed files with 25 additions and 20 deletions

View file

@ -43,21 +43,6 @@ static const UChar ACE_PREFIX[] ={ 0x0058,0x004E,0x002d,0x002d } ;
#define FULL_STOP 0x002E
NamePrepTransform* TestIDNA::prep = NULL;
NamePrepTransform* TestIDNA::getInstance(UErrorCode& status){
if(TestIDNA::prep == NULL){
UParseError parseError;
TestIDNA::prep = NamePrepTransform::createInstance(parseError, status);
if(TestIDNA::prep ==NULL){
//status = U_MEMORY_ALLOCATION_ERROR;
return NULL;
}
}
return TestIDNA::prep;
}
inline static UBool
startsWithPrefix(const UChar* src , int32_t srcLength){
UBool startsWithPrefix = TRUE;

View file

@ -615,7 +615,9 @@ void TestIDNA::debug(const UChar* src, int32_t srcLength, int32_t options){
errln("Failed. Expected: " + prettify(UnicodeString(transOut, transOutLength))
+ " Got: " + prettify(UnicodeString(prepOut,prepOutLength)));
}
uprv_free(transOut);
uprv_free(prepOut);
delete trans;
}
@ -1572,8 +1574,6 @@ void TestIDNA::TestIDNAMonkeyTest(){
debug(source.getBuffer(),source.length(),UIDNA_ALLOW_UNASSIGNED);
source.releaseBuffer();
delete TestIDNA::prep;
TestIDNA::prep = NULL;
}
void TestIDNA::TestCompareReferenceImpl(){
@ -1617,12 +1617,30 @@ void TestIDNA::TestRefIDNA(){
"idnaref_IDNToUnicode",idnaref_IDNToUnicode
);
testChaining("idnaref_toASCII",idnaref_toASCII, "idnaref_toUnicode", idnaref_toUnicode);
delete TestIDNA::prep;
TestIDNA::prep = NULL;
}
void TestIDNA::TestDataFile(){
testData(*this);
}
TestIDNA::~TestIDNA(){
if(prep!=NULL){
delete prep;
prep = NULL;
}
}
NamePrepTransform* TestIDNA::prep = NULL;
NamePrepTransform* TestIDNA::getInstance(UErrorCode& status){
if(TestIDNA::prep == NULL){
UParseError parseError;
TestIDNA::prep = NamePrepTransform::createInstance(parseError, status);
if(TestIDNA::prep ==NULL){
//status = U_MEMORY_ALLOCATION_ERROR;
return NULL;
}
}
return TestIDNA::prep;
}
#endif /* #if !UCONFIG_NO_IDNA */

View file

@ -66,6 +66,8 @@ public:
void TestConformance();
static NamePrepTransform* getInstance(UErrorCode& status);
static NamePrepTransform* prep;
~TestIDNA();
private:
void testToASCII(const char* testName, TestFunc func);
void testToUnicode(const char* testName, TestFunc func);