mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 13:35:32 +00:00
ICU-11767 Fix brokenbuild.
X-SVN-Rev: 37730
This commit is contained in:
parent
abb16f16c5
commit
0a10ba1d7e
1 changed files with 4 additions and 3 deletions
|
@ -1493,9 +1493,10 @@ void MultithreadTest::TestUnifiedCache() {
|
|||
}
|
||||
// We know that each thread cannot create more than 2 objects in
|
||||
// the cache, and there are UPRV_LENGTHOF(gCacheLocales) pairs of
|
||||
// objects fetched from the cache
|
||||
if (gObjectsCreated > 2 * UPRV_LENGTHOF(gCacheLocales)) {
|
||||
errln("%s:%d Too many objects created, got %d, expected %d", __FILE__, __LINE__, gObjectsCreated, 2 * UPRV_LENGTHOF(gCacheLocales));
|
||||
// objects fetched from the cache. If the threads run in series because
|
||||
// of eviction, at worst case each thread creates two objects.
|
||||
if (gObjectsCreated > 2 * CACHE_LOAD * UPRV_LENGTHOF(gCacheLocales)) {
|
||||
errln("%s:%d Too many objects created, got %d, expected %d", __FILE__, __LINE__, gObjectsCreated, 2 * CACHE_LOAD * UPRV_LENGTHOF(gCacheLocales));
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue