Justin Bogner | b5bff69 | 2014-02-04 06:41:33 +0000 | [diff] [blame^] | 1 | # Tests for compatibility between llvm-cov and gcov. These work by |
| 2 | # comparing llvm-cov against reference outputs generated by gcov 4.2. |
| 3 | |
Daniel Jasper | cf765e3 | 2013-12-03 08:21:14 +0000 | [diff] [blame] | 4 | # "cd" and globbing are unsupported in lit internal runner. |
Daniel Jasper | 80b2ffb | 2013-12-03 07:56:23 +0000 | [diff] [blame] | 5 | REQUIRES: shell |
Justin Bogner | b5bff69 | 2014-02-04 06:41:33 +0000 | [diff] [blame^] | 6 | |
Daniel Jasper | cf765e3 | 2013-12-03 08:21:14 +0000 | [diff] [blame] | 7 | RUN: rm -rf %t |
| 8 | RUN: mkdir %t |
| 9 | RUN: cd %t |
Yuchen Wu | c8e0f81 | 2013-12-03 19:05:03 +0000 | [diff] [blame] | 10 | RUN: cp %p/Inputs/test* . |
Daniel Jasper | cf765e3 | 2013-12-03 08:21:14 +0000 | [diff] [blame] | 11 | |
Justin Bogner | b5bff69 | 2014-02-04 06:41:33 +0000 | [diff] [blame^] | 12 | # Basic behaviour with no flags |
| 13 | RUN: llvm-cov test.c | diff -u test_no_options.output - |
Yuchen Wu | 8c6bb5f | 2013-12-10 01:02:07 +0000 | [diff] [blame] | 14 | RUN: diff -aub test_no_options.cpp.gcov test.cpp.gcov |
| 15 | RUN: diff -aub test_no_options.h.gcov test.h.gcov |
| 16 | |
Justin Bogner | b5bff69 | 2014-02-04 06:41:33 +0000 | [diff] [blame^] | 17 | # Function summaries. This changes stdout, but not the gcov files. |
| 18 | RUN: llvm-cov test.c -f | diff -u test_-f.output - |
| 19 | RUN: diff -aub test_no_options.cpp.gcov test.cpp.gcov |
| 20 | RUN: diff -aub test_no_options.h.gcov test.h.gcov |
| 21 | |
| 22 | # All blocks. This doesn't affect stdout, only the gcov files. |
| 23 | RUN: llvm-cov test.c -a | diff -u test_no_options.output - |
Yuchen Wu | 8c6bb5f | 2013-12-10 01:02:07 +0000 | [diff] [blame] | 24 | RUN: diff -aub test_-a.cpp.gcov test.cpp.gcov |
| 25 | RUN: diff -aub test_-a.h.gcov test.h.gcov |
Yuchen Wu | aae8801 | 2013-11-13 22:50:15 +0000 | [diff] [blame] | 26 | |
Justin Bogner | b5bff69 | 2014-02-04 06:41:33 +0000 | [diff] [blame^] | 27 | # Branch probabilities. |
| 28 | RUN: llvm-cov test.c -a -b | diff -u test_-b.output - |
Yuchen Wu | 342714c | 2013-12-13 01:15:07 +0000 | [diff] [blame] | 29 | RUN: diff -aub test_-a_-b.cpp.gcov test.cpp.gcov |
| 30 | RUN: diff -aub test_-a_-b.h.gcov test.h.gcov |
| 31 | |
Justin Bogner | b5bff69 | 2014-02-04 06:41:33 +0000 | [diff] [blame^] | 32 | # Function summaries including branch probabilities. |
| 33 | |
| 34 | # FIXME: We don't correctly handle calls when -b and -f are used |
| 35 | # together, so our output differs from gcov. Remove the 'not' from |
| 36 | # this test once this is fixed. |
| 37 | RUN: llvm-cov test.c -a -b -f | not diff -u test_-b_-f.output - >/dev/null |
| 38 | RUN: diff -aub test_-a_-b.cpp.gcov test.cpp.gcov |
| 39 | RUN: diff -aub test_-a_-b.h.gcov test.h.gcov |
| 40 | |
| 41 | # Summarize unconditional branches too. |
| 42 | RUN: llvm-cov test.c -a -b -u | diff -u test_-b.output - |
Yuchen Wu | 66d93b8 | 2013-12-16 22:14:02 +0000 | [diff] [blame] | 43 | RUN: diff -aub test_-a_-b_-u.cpp.gcov test.cpp.gcov |
| 44 | RUN: diff -aub test_-a_-b_-u.h.gcov test.h.gcov |
| 45 | |
Justin Bogner | b5bff69 | 2014-02-04 06:41:33 +0000 | [diff] [blame^] | 46 | # Absolute counts for branches. |
| 47 | RUN: llvm-cov test.c -a -b -c -u | diff -u test_-b.output - |
Yuchen Wu | 73dc381 | 2013-12-18 18:40:15 +0000 | [diff] [blame] | 48 | RUN: diff -aub test_-a_-b_-c_-u.cpp.gcov test.cpp.gcov |
| 49 | RUN: diff -aub test_-a_-b_-c_-u.h.gcov test.h.gcov |
| 50 | |
Justin Bogner | b5bff69 | 2014-02-04 06:41:33 +0000 | [diff] [blame^] | 51 | # Invalid gcno file. |
Justin Bogner | a99a390 | 2014-01-29 21:31:34 +0000 | [diff] [blame] | 52 | RUN: not llvm-cov test.c -gcno=test_read_fail.gcno |
Yuchen Wu | e28da84 | 2013-11-14 00:07:15 +0000 | [diff] [blame] | 53 | |
Justin Bogner | b5bff69 | 2014-02-04 06:41:33 +0000 | [diff] [blame^] | 54 | # Bad file checksum on gcda. |
Justin Bogner | a99a390 | 2014-01-29 21:31:34 +0000 | [diff] [blame] | 55 | RUN: not llvm-cov test.c -gcda=test_file_checksum_fail.gcda |
Daniel Jasper | 87a24d5 | 2013-12-04 08:57:17 +0000 | [diff] [blame] | 56 | |
Justin Bogner | b5bff69 | 2014-02-04 06:41:33 +0000 | [diff] [blame^] | 57 | # Bad function checksum on gcda |
Justin Bogner | a99a390 | 2014-01-29 21:31:34 +0000 | [diff] [blame] | 58 | RUN: not llvm-cov test.c -gcda=test_func_checksum_fail.gcda |
Yuchen Wu | babe749 | 2013-11-20 04:15:05 +0000 | [diff] [blame] | 59 | |
Venkatraman Govindaraju | d97acf3 | 2014-01-25 22:54:47 +0000 | [diff] [blame] | 60 | XFAIL: powerpc64, s390x, mips, sparc |