Skip to content

Commit

Permalink
ICU-22628 Replace log_err() with log_knownIssue() for known failure.
Browse files Browse the repository at this point in the history
  • Loading branch information
roubert committed Mar 27, 2024
1 parent 86b07da commit 4b8f8f3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion icu4c/source/test/letest/letest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 4b8f8f3

Please sign in to comment.