From 4b8f8f3c48f6e04621dcdbae55b17940fcbd7d1c Mon Sep 17 00:00:00 2001 From: Fredrik Roubert Date: Wed, 17 Jan 2024 16:23:42 +0900 Subject: [PATCH] ICU-22628 Replace log_err() with log_knownIssue() for known failure. --- icu4c/source/test/letest/letest.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/icu4c/source/test/letest/letest.cpp b/icu4c/source/test/letest/letest.cpp index 3d51d3331e1e..53e21cfd8f8c 100644 --- a/icu4c/source/test/letest/letest.cpp +++ b/icu4c/source/test/letest/letest.cpp @@ -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; }