ICU-6905 Make heap mutex test in cintltst pass w/o data.

X-SVN-Rev: 26101
This commit is contained in:
Michael Ow 2009-06-15 03:06:50 +00:00
parent 5ecf5bd261
commit 4cd8c49cc8
2 changed files with 3 additions and 3 deletions

View file

@ -44,8 +44,8 @@ void addAllTests(TestNode** root)
{
addCnvSelTest(root);
addUDataTest(root);
addHeapMutexTest(root);
addPUtilTest(root);
addHeapMutexTest(root);
addUTF16Test(root);
addUTF8Test(root);
addUtility(root);

View file

@ -1,6 +1,6 @@
/********************************************************************
* COPYRIGHT:
* Copyright (c) 2003-2006, International Business Machines Corporation and
* Copyright (c) 2003-2009, International Business Machines Corporation and
* others. All Rights Reserved.
********************************************************************/
/*
@ -47,7 +47,7 @@ static int32_t gMutexFailures = 0;
#define TEST_STATUS(status, expected) \
if (status != expected) { \
log_err("FAIL at %s:%d. Actual status = \"%s\"; Expected status = \"%s\"\n", \
log_err_status(status, "FAIL at %s:%d. Actual status = \"%s\"; Expected status = \"%s\"\n", \
__FILE__, __LINE__, u_errorName(status), u_errorName(expected)); gMutexFailures++; }