ICU-10983 Add failure checks to utext_clone().

X-SVN-Rev: 35985
This commit is contained in:
Andy Heninger 2014-07-02 19:15:28 +00:00
parent b1de9c0f30
commit 4de6a9f525
2 changed files with 21 additions and 2 deletions

View file

@ -1,6 +1,6 @@
/********************************************************************
* COPYRIGHT:
* Copyright (c) 2005-2013, International Business Machines Corporation and
* Copyright (c) 2005-2014, International Business Machines Corporation and
* others. All Rights Reserved.
********************************************************************/
/************************************************************************
@ -59,6 +59,8 @@ UTextTest::runIndexedTest(int32_t index, UBool exec,
if (exec) Ticket6847(); break;
case 5: name = "Ticket10562";
if (exec) Ticket10562(); break;
case 6: name = "Ticket10983";
if (exec) Ticket10983(); break;
default: name = ""; break;
}
}
@ -1483,3 +1485,19 @@ void UTextTest::Ticket10562() {
utext_close(usText);
}
void UTextTest::Ticket10983() {
// Note: failure shows as a seg fault when the defect is present.
UErrorCode status = U_ZERO_ERROR;
UnicodeString s("Hello, World");
UText *ut = utext_openConstUnicodeString(NULL, &s, &status);
TEST_SUCCESS(status);
status = U_INVALID_STATE_ERROR;
UText *cloned = utext_clone(NULL, ut, TRUE, TRUE, &status);
TEST_ASSERT(cloned == NULL);
TEST_ASSERT(status == U_INVALID_STATE_ERROR);
utext_close(ut);
}

View file

@ -1,6 +1,6 @@
/********************************************************************
* COPYRIGHT:
* Copyright (c) 2005-2013, International Business Machines Corporation and
* Copyright (c) 2005-2014, International Business Machines Corporation and
* others. All Rights Reserved.
********************************************************************/
/************************************************************************
@ -34,6 +34,7 @@ public:
void Ticket5560();
void Ticket6847();
void Ticket10562();
void Ticket10983();
private:
struct m { // Map between native indices & code points.