ICU-5170 fix invalid paramater checking & test for ubrk_open()

X-SVN-Rev: 19605
This commit is contained in:
Andy Heninger 2006-05-03 03:32:18 +00:00
parent de8c6c14f3
commit 3a31ab328e
2 changed files with 5 additions and 5 deletions

View file

@ -62,7 +62,7 @@ ubrk_open(UBreakIteratorType type,
break;
default:
U_ASSERT(FALSE);
*status = U_ILLEGAL_ARGUMENT_ERROR;
}
// check for allocation error

View file

@ -1,6 +1,6 @@
/********************************************************************
* COPYRIGHT:
* Copyright (c) 1997-2005, International Business Machines Corporation and
* Copyright (c) 1997-2006, International Business Machines Corporation and
* others. All Rights Reserved.
********************************************************************/
/********************************************************************************
@ -190,11 +190,11 @@ static void TestBreakIteratorCAPI()
/*trying to open an illegal iterator*/
bogus = ubrk_open((UBreakIteratorType)5, "en_US", text, u_strlen(text), &status);
if(U_SUCCESS(status)){
log_err("FAIL: Error in ubrk_open() for BOGUS breakiterator. Expected U_MEMORY_ALLOCATION_ERROR\n");
log_err("FAIL: Error in ubrk_open() for BOGUS breakiterator. Expected U_ILLEGAL_ARGUMENT_ERROR\n");
}
if(U_FAILURE(status)){
if(status != U_MEMORY_ALLOCATION_ERROR){
log_err("FAIL: Error in ubrk_open() for BOGUS breakiterator. Expected U_MEMORY_ALLOCATION_ERROR\n Got %s\n", myErrorName(status));
if(status != U_ILLEGAL_ARGUMENT_ERROR){
log_err("FAIL: Error in ubrk_open() for BOGUS breakiterator. Expected U_ILLEGAL_ARGUMENT_ERROR\n Got %s\n", myErrorName(status));
}
}
status=U_ZERO_ERROR;