History log of /llvm-project/llvm/tools/llvm-cov/llvm-cov.cpp (Results 51 – 61 of 61)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 446e991f 05-Nov-2013 Yuchen Wu <yuchenericwu@hotmail.com>

llvm-cov: Added command-line option to change dir.

This will allow for much easier testing when the input files are in a
different folder from the test script.

llvm-svn: 194034


# dbcf1975 02-Nov-2013 Yuchen Wu <yuchenericwu@hotmail.com>

Added command-line option to output llvm-cov to file.

Added -o option to llvm-cov. If no output file is specified, it defaults
to STDOUT.

llvm-svn: 193899


# 9194d7b0 31-Oct-2013 Yuchen Wu <yuchenericwu@hotmail.com>

Updated llvm-cov's OVERVIEW description

llvm-svn: 193732


# 3461bedb 22-Oct-2013 Bob Wilson <bob.wilson@apple.com>

Change llvm-cov output formatting to be more similar to gcov.

- Replaced tabs with proper padding
- print() takes two arguments, which are the GCNO and GCDA filenames
- Files are listed at the top o

Change llvm-cov output formatting to be more similar to gcov.

- Replaced tabs with proper padding
- print() takes two arguments, which are the GCNO and GCDA filenames
- Files are listed at the top of output, appended by line 0
- Stripped strings of trailing \0s
- Removed last two lines of whitespace in output

Patch by Yuchen Wu!

llvm-svn: 193148

show more ...


# 2f19d42f 22-Oct-2013 Bob Wilson <bob.wilson@apple.com>

Move the printing of llvm-cov information out from collectLineCounts().

collectLineCounts() should only organize the output data. This is done in
anticipation of subsequent changes which will pass i

Move the printing of llvm-cov information out from collectLineCounts().

collectLineCounts() should only organize the output data. This is done in
anticipation of subsequent changes which will pass in GCNO and GCDA filenames
into the print function where it is printed similar to the gcov output.

Patch by Yuchen Wu!

llvm-svn: 193134

show more ...


Revision tags: llvmorg-3.3.1-rc1, llvmorg-3.3.0, llvmorg-3.3.0-rc3, llvmorg-3.3.0-rc2, llvmorg-3.3.0-rc1, llvmorg-3.2.0, llvmorg-3.2.0-rc3, llvmorg-3.2.0-rc2, llvmorg-3.2.0-rc1
# 3fdaa244 07-Nov-2012 Bill Wendling <isanbard@gmail.com>

Remove accidental commit.

llvm-svn: 167544


# f720bf64 07-Nov-2012 Bill Wendling <isanbard@gmail.com>

Add comment describing what's going on here.

llvm-svn: 167525


Revision tags: llvmorg-3.1.0, llvmorg-3.1.0-rc3, llvmorg-3.1.0-rc2, llvmorg-3.1.0-rc1, llvmorg-3.0.0, llvmorg-3.0.0-rc4, llvmorg-3.0.0-rc3, llvmorg-3.0.0-rc2, llvmorg-3.0.0-rc1
# 8dfb6551 04-Oct-2011 Devang Patel <dpatel@apple.com>

Put GCOVFile and other related interface in a common header so that llvm-cov tool can share it with GCOV writer.

llvm-svn: 141095


# eec5c5bf 29-Sep-2011 Devang Patel <dpatel@apple.com>

Clarify comments.

llvm-svn: 140787


# a9e8a250 29-Sep-2011 Devang Patel <dpatel@apple.com>

Cosmetic changes, as per Nick's review.

llvm-svn: 140785


# 3714065a 28-Sep-2011 Devang Patel <dpatel@apple.com>

Introduce llvm-cov.

Add llvm-cov skeleton. It has initial support to read coverage info generated by GCOVProfiling.cpp.
Today, you can do
prompt> clang a.c -ftest-coverage -fprofile-arcs -o a
promp

Introduce llvm-cov.

Add llvm-cov skeleton. It has initial support to read coverage info generated by GCOVProfiling.cpp.
Today, you can do
prompt> clang a.c -ftest-coverage -fprofile-arcs -o a
prompt> ./a
prompt> llvm-cov -gcno a.gcno -gcda a.gcda
a.c
: #include "a.h"
:
: int main() {
: int i = 0;
: if (i) {
1: int j = 0;
1: j = 1;
1: } else {
: int k = 1;
: k = 2;
: }
1: return 0;
: }
:
:

llvm-svn: 140712

show more ...


123