Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(45)

Unified Diff: source/tools/ctestfw/ctest.c

Issue 845603002: Update ICU to 54.1 step 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/icu.git@master
Patch Set: remove unusued directories Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « source/test/testdata/zoneinfo64.txt ('k') | source/tools/ctestfw/ctestfw.vcxproj » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « source/test/testdata/zoneinfo64.txt ('k') | source/tools/ctestfw/ctestfw.vcxproj » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698