diff options
author | Pawel Pekala <pawel@FreeBSD.org> | 2012-12-22 15:56:21 +0000 |
---|---|---|
committer | Pawel Pekala <pawel@FreeBSD.org> | 2012-12-22 15:56:21 +0000 |
commit | 7897354104ea2a90a4916ae30fefe6e3fad0ee30 (patch) | |
tree | 6280478c5e7f7ef32c9bd11a841b1b6b6da34ef7 /devel/covtool/files/patch-gen_html | |
parent | KLEE is a symbolic virtual machine built on top of the (diff) |
A free test coverage analysis tool for C++. Analogous to purecov but quite
different in implementation. This tool does its job by instrumenting the
source as you compile. You can thus add your own instrumentation to every
line on the fly.
WWW: http://sourceforge.net/projects/covtool/
PR: ports/174234
Submitted by: novator24 <novator24@gmail.com>
Notes
Notes:
svn path=/head/; revision=309395
Diffstat (limited to 'devel/covtool/files/patch-gen_html')
-rw-r--r-- | devel/covtool/files/patch-gen_html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/devel/covtool/files/patch-gen_html b/devel/covtool/files/patch-gen_html new file mode 100644 index 000000000000..66ae30a9d989 --- /dev/null +++ b/devel/covtool/files/patch-gen_html @@ -0,0 +1,20 @@ +--- ./gen_html.orig 2012-12-05 19:51:17.000000000 +0400 ++++ ./gen_html 2012-12-05 19:51:45.000000000 +0400 +@@ -12,7 +12,7 @@ + echo "can't find merged covexp database file: '$db'" + echo "" + echo "You must supply the name of a MERGED covexp file" +- echo "The covmerge.exe program adds additional information" ++ echo "The covmerge program adds additional information" + echo "needed by this script" + exit 1 + fi +@@ -50,7 +50,7 @@ + if [ ! -r "$3$file" ] + then + mkdir -p `dirname $3$file` +- covannotate.exe "$file" "$db" >"$3$file.txt" ++ covannotate "$file" "$db" >"$3$file.txt" + fi + + link="<a href=.$file.txt>" |