mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 12:12:47 +01:00
11e1f2366f
This commit makes llvm-cov avoid showing 0% (0/0) coverage for things like file function coverage, etc. in reports and HTML output. This can happen for files like headers that have macros but no functions. This commit makes llvm-cov report - (0/0) instead. rdar://29246480 Differential Revision: https://reviews.llvm.org/D26615 llvm-svn: 287539
20 lines
784 B
C
20 lines
784 B
C
#include "Inputs/zeroFunctionFile.h"
|
|
|
|
int foo(int x) {
|
|
return NOFUNCTIONS(x);
|
|
}
|
|
int main() {
|
|
return foo(2);
|
|
}
|
|
|
|
// RUN: llvm-profdata merge %S/Inputs/zeroFunctionFile.proftext -o %t.profdata
|
|
|
|
// RUN: llvm-cov report %S/Inputs/zeroFunctionFile.covmapping -instr-profile %t.profdata 2>&1 | FileCheck --check-prefix=REPORT --strict-whitespace %s
|
|
// REPORT: 0 0 - 0 0 - 0 0 - 0 0 -
|
|
// REPORT-NO: 0%
|
|
|
|
// RUN: llvm-cov show %S/Inputs/zeroFunctionFile.covmapping -format html -instr-profile %t.profdata -o %t.dir
|
|
// RUN: FileCheck %s -input-file=%t.dir/index.html -check-prefix=HTML
|
|
// HTML: <td class='column-entry-green'><pre>- (0/0)
|
|
// HTML-NO: 0.00% (0/0)
|