From 78d44a676d8e9b6925b0b9c3c215089e47d3ef5d Mon Sep 17 00:00:00 2001 From: George Rhoten Date: Fri, 28 Jul 2000 15:17:24 +0000 Subject: [PATCH] ICU-307 Changed the error message format as specified by Alan X-SVN-Rev: 2064 --- icu4c/source/test/cintltst/ccapitst.c | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/icu4c/source/test/cintltst/ccapitst.c b/icu4c/source/test/cintltst/ccapitst.c index cb73022c7e..f5de42d41b 100644 --- a/icu4c/source/test/cintltst/ccapitst.c +++ b/icu4c/source/test/cintltst/ccapitst.c @@ -1047,16 +1047,19 @@ void TestAlias() { const char *mapBack; if (alias == NULL) { - log_err("FAIL: Converter \"%s\" (i=%d) has no alias\n", - name, i); + log_err("FAIL: Converter \"%s\" -> " + "alias[%d]=NULL\n", + name, j); continue; } mapBack = ucnv_getAlias(alias, 0, &status); if (mapBack == NULL) { - log_err("FAIL: Converter \"%s\" (i=%d) has no mapBack\n", - name, i); + log_err("FAIL: Converter \"%s\" -> " + "alias[%d]=\"%s\" -> " + "alias[0]=NULL, exp. \"%s\"\n", + name, j, alias, alias0); continue; }