| Index: source/tools/ctestfw/ctest.c | 
| diff --git a/source/tools/ctestfw/ctest.c b/source/tools/ctestfw/ctest.c | 
| index a09bb19efba109fb9306314179ae083cabd28d1a..da641f2d7568f05cb0b3b7ba466cc5a25746e3cf 100644 | 
| --- a/source/tools/ctestfw/ctest.c | 
| +++ b/source/tools/ctestfw/ctest.c | 
| @@ -1,7 +1,7 @@ | 
| /* | 
| ******************************************************************************** | 
| * | 
| -*   Copyright (C) 1996-2013, International Business Machines | 
| +*   Copyright (C) 1996-2014, International Business Machines | 
| *   Corporation and others.  All Rights Reserved. | 
| * | 
| ******************************************************************************** | 
| @@ -523,6 +523,7 @@ runTests ( const TestNode *root ) | 
| fprintf(stdout, "(To run suppressed tests, use the -K option.) \n\n"); | 
| } | 
| udbg_knownIssue_close(knownList); | 
| +      knownList = NULL; | 
| } | 
|  | 
| if (ERROR_COUNT) | 
| @@ -706,9 +707,9 @@ static UBool vlog_knownIssue(const char *ticket, const char *pattern, va_list ap | 
| &firstForTicket, &firstForWhere); | 
|  | 
| if(firstForTicket || firstForWhere) { | 
| -      log_info("(Known issue #%s) %s", ticket, buf); | 
| +      log_info("(Known issue #%s) %s\n", ticket, buf); | 
| } else { | 
| -      log_verbose("(Known issue #%s) %s", ticket, buf); | 
| +      log_verbose("(Known issue #%s) %s\n", ticket, buf); | 
| } | 
|  | 
| return TRUE; | 
|  |