ICU-22628 Replace log_err() with log_knownIssue() for known failure.

This commit is contained in:
Fredrik Roubert 2024-01-17 16:23:42 +09:00 committed by Fredrik Roubert
parent 86b07da451
commit 4b8f8f3c48

View file

@ -324,7 +324,8 @@ le_bool compareResults(const char *testID, TestResult *expected, TestResult *act
{
/* NOTE: we'll stop on the first failure 'cause once there's one error, it may cascade... */
if (actual->glyphCount != expected->glyphCount) {
log_err("Test %s: incorrect glyph count: expected %d, got %d\n",
log_knownIssue("ICU-22628",
"Test %s: incorrect glyph count: expected %d, got %d\n",
testID, expected->glyphCount, actual->glyphCount);
return false;
}