diff options
author | dim <dim@FreeBSD.org> | 2015-01-18 16:23:48 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2015-01-18 16:23:48 +0000 |
commit | c86b984ea8ecb3e944dc3de48539f4c1f65851ea (patch) | |
tree | 3eb853da77d46cc77c4b017525a422f9ddb1385b /test/CoverageMapping/header.cpp | |
parent | c696171ff15f0ee60dea4abfd99a135473c95656 (diff) | |
download | FreeBSD-src-c86b984ea8ecb3e944dc3de48539f4c1f65851ea.zip FreeBSD-src-c86b984ea8ecb3e944dc3de48539f4c1f65851ea.tar.gz |
Vendor import of clang RELEASE_360/rc1 tag r226102 (effectively, 3.6.0 RC1):
https://llvm.org/svn/llvm-project/cfe/tags/RELEASE_360/rc1@226102
Diffstat (limited to 'test/CoverageMapping/header.cpp')
-rw-r--r-- | test/CoverageMapping/header.cpp | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/test/CoverageMapping/header.cpp b/test/CoverageMapping/header.cpp new file mode 100644 index 0000000..c268191 --- /dev/null +++ b/test/CoverageMapping/header.cpp @@ -0,0 +1,27 @@ +// RUN: %clang_cc1 -fprofile-instr-generate -fcoverage-mapping -dump-coverage-mapping -emit-llvm-only -main-file-name tu1.cpp %s > %tmapping +// RUN: FileCheck -input-file %tmapping %s --check-prefix=CHECK-FUNC +// RUN: FileCheck -input-file %tmapping %s --check-prefix=CHECK-STATIC-FUNC +// RUN: FileCheck -input-file %tmapping %s --check-prefix=CHECK-STATIC-FUNC2 + +#include "Inputs/header1.h" + +int main() { + func(1); + static_func(2); +} + +// CHECK-FUNC: func +// CHECK-FUNC: File 0, 4:25 -> 11:2 = #0 (HasCodeBefore = 0) +// CHECK-FUNC: File 0, 6:15 -> 8:4 = #1 (HasCodeBefore = 0) +// CHECK-FUNC: File 0, 8:10 -> 10:4 = (#0 - #1) (HasCodeBefore = 0) +// CHECK-FUNC: Expansion,File 1, 6:10 -> 6:28 = #0 (HasCodeBefore = 0, Expanded file = 0) + +// CHECK-STATIC-FUNC: static_func +// CHECK-STATIC-FUNC: File 0, 12:32 -> 20:2 = #0 (HasCodeBefore = 0) +// CHECK-STATIC-FUNC: File 0, 14:15 -> 16:4 = #1 (HasCodeBefore = 0) +// CHECK-STATIC-FUNC: File 0, 16:10 -> 18:4 = (#0 - #1) (HasCodeBefore = 0) +// CHECK-STATIC-FUNC: Expansion,File 1, 6:10 -> 6:28 = #0 (HasCodeBefore = 0, Expanded file = 0) + +// CHECK-STATIC-FUNC2: static_func2 +// CHECK-STATIC-FUNC2: File 0, 21:33 -> 29:2 = 0 (HasCodeBefore = 0) +// CHECK-STATIC-FUNC2: Expansion,File 1, 6:10 -> 6:28 = 0 (HasCodeBefore = 0, Expanded file = 0) |