citrun

watch C/C++ source code execute
Log | Files | Refs | LICENSE

commit 96d0bc07ae3f358952fb97994ccc5b0ef7ee6f42
parent e4b952337214ba7289078adc75d07dfc2ce5c047
Author: Kyle Milz <kyle@0x30.net>
Date:   Thu,  4 Aug 2016 18:05:04 -0600

src: change logging slightly.

Diffstat:
Msrc/check.in | 6+++---
Msrc/inst_main.cc | 4++--
2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/check.in b/src/check.in @@ -11,15 +11,15 @@ fi GREP[1]="citrun-inst" GREP[2]="Forked " GREP[3]="Instrumentation successful." -GREP[4]="Instrumentation failed." -GREP[5]="Bad news" +GREP[4]="Good news bud" +GREP[5]="Bad news bud" GREP[6]="Link detected" DESC[0]="Log files found" DESC[1]="Calls to the instrumentation tool" DESC[2]="Forked compilers" DESC[3]="Instrumentation successes" -DESC[4]="Instrumentation failures" +DESC[4]="Instrumentation failures (false positive)" DESC[5]="Instrumentation failures (true positive)" DESC[6]="Application link commands" diff --git a/src/inst_main.cc b/src/inst_main.cc @@ -313,11 +313,11 @@ CitrunInst::try_unmodified_compile() int ret = fork_compiler(); if (ret == 0) { - m_log << m_pfx << "Bad news, native compile succeeded.\n"; + m_log << m_pfx << "Bad news bud native compile succeeded.\n"; return 1; } - m_log << m_pfx << "Good, the native compiler also failed.\n"; + m_log << m_pfx << "Good news bud the native compiler also failed.\n"; return ret; }