citrun

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

commit 7ce2e21be3e0bb21da68991cc86094b756813dba
parent e08c0b84d3e032fc6fc0906417cbcdbb8ecd8c5a
Author: Kyle Milz <kyle@0x30.net>
Date:   Sat, 20 Aug 2016 15:03:13 -0600

src: don't report calls to citrun-inst

Diffstat:
Mman/citrun-check.1 | 5-----
Msrc/check.in | 34++++++++++++++++------------------
2 files changed, 16 insertions(+), 23 deletions(-)

diff --git a/man/citrun-check.1 b/man/citrun-check.1 @@ -45,7 +45,6 @@ after had been used to instrument a simple project: .Bd -literal -offset indent Summary: - 1 Calls to the rewrite tool 1 Source files used as input 1 Application link commands 1 Rewrite successes @@ -72,10 +71,6 @@ reasons and is not always a bad thing. The following table shows all of the possible counts, and describes them: .Pp .Bl -tag -width Ds -.It Qq Calls to the rewrite tool -The total number of times -.Xr citrun-inst 1 -was called. .It Qq Source files used as input The total number of C/C++ source files that had rewriting attempted on them. .It Qq Application link commands diff --git a/src/check.in b/src/check.in @@ -14,25 +14,23 @@ if [ $# -eq 1 ]; then fi [ -d $dir ] || err "citrun-check: $dir: no such directory" -GREP[0]="Tool called as " -GREP[1]="Found source file" -GREP[2]="Link detected" -GREP[3]="warning: " -GREP[4]="error: " -GREP[5]="Rewriting successful" -GREP[6]="Rewriting failed" -GREP[7]="Rewritten source compile successful" -GREP[8]="Rewritten source compile failed" +GREP[0]="Found source file" +GREP[1]="Link detected" +GREP[2]="warning: " +GREP[3]="error: " +GREP[4]="Rewriting successful" +GREP[5]="Rewriting failed" +GREP[6]="Rewritten source compile successful" +GREP[7]="Rewritten source compile failed" -DESC[0]="Calls to the rewrite tool" -DESC[1]="Source files used as input" -DESC[2]="Application link commands" -DESC[3]="Rewrite parse warnings" -DESC[4]="Rewrite parse errors" -DESC[5]="Rewrite successes" -DESC[6]="Rewrite failures" -DESC[7]="Rewritten source compile successes" -DESC[8]="Rewritten source compile failures" +DESC[0]="Source files used as input" +DESC[1]="Application link commands" +DESC[2]="Rewrite parse warnings" +DESC[3]="Rewrite parse errors" +DESC[4]="Rewrite successes" +DESC[5]="Rewrite failures" +DESC[6]="Rewritten source compile successes" +DESC[7]="Rewritten source compile failures" desc_len=${#DESC[@]} FINE[0]="Lines of source code"