mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
[sancov] renaming statistics fields.
llvm-svn: 264349
This commit is contained in:
parent
8753a39411
commit
3edddc591b
@ -1,9 +1,9 @@
|
||||
REQUIRES: x86_64-linux
|
||||
RUN: sancov -print-coverage-stats %p/Inputs/test-linux_x86_64 %p/Inputs/test-linux_x86_64.0.sancov | FileCheck %s
|
||||
|
||||
CHECK: all-points: 16
|
||||
CHECK: cov-points: 7
|
||||
CHECK: all-fns: 3
|
||||
CHECK: cov-fns: 2
|
||||
CHECK: all-edges: 16
|
||||
CHECK: cov-edges: 7
|
||||
CHECK: all-functions: 3
|
||||
CHECK: cov-functions: 2
|
||||
|
||||
|
||||
|
@ -543,10 +543,10 @@ struct CoverageStats {
|
||||
};
|
||||
|
||||
static raw_ostream &operator<<(raw_ostream &OS, const CoverageStats &Stats) {
|
||||
OS << "all-points: " << Stats.AllPoints << "\n";
|
||||
OS << "cov-points: " << Stats.CovPoints << "\n";
|
||||
OS << "all-fns: " << Stats.AllFns << "\n";
|
||||
OS << "cov-fns: " << Stats.CovFns << "\n";
|
||||
OS << "all-edges: " << Stats.AllPoints << "\n";
|
||||
OS << "cov-edges: " << Stats.CovPoints << "\n";
|
||||
OS << "all-functions: " << Stats.AllFns << "\n";
|
||||
OS << "cov-functions: " << Stats.CovFns << "\n";
|
||||
return OS;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user