diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2015-05-27 18:47:56 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2015-05-27 18:47:56 +0000 |
commit | 5e20cdd81c44a443562a09007668ffdf76c455af (patch) | |
tree | dbbd4047878da71c1a706e26ce05b4e7791b14cc /test/CoverageMapping/header.cpp | |
parent | d5f23b0b7528b5c3caed1ba14f897cc4aaa9e3c3 (diff) |
Notes
Diffstat (limited to 'test/CoverageMapping/header.cpp')
-rw-r--r-- | test/CoverageMapping/header.cpp | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/test/CoverageMapping/header.cpp b/test/CoverageMapping/header.cpp index c268191d22372..e495d5a6285cb 100644 --- a/test/CoverageMapping/header.cpp +++ b/test/CoverageMapping/header.cpp @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 -fprofile-instr-generate -fcoverage-mapping -dump-coverage-mapping -emit-llvm-only -main-file-name tu1.cpp %s > %tmapping +// RUN: %clang_cc1 -fprofile-instr-generate -fcoverage-mapping -dump-coverage-mapping -emit-llvm-only -main-file-name header.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 @@ -11,17 +11,14 @@ int main() { } // 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-FUNC: File 0, 4:25 -> 11:2 = #0 +// CHECK-FUNC: File 0, 6:15 -> 8:4 = #1 +// CHECK-FUNC: File 0, 8:10 -> 10:4 = (#0 - #1) // 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-FUNC: File 0, 12:32 -> 20:2 = #0 +// CHECK-STATIC-FUNC: File 0, 14:15 -> 16:4 = #1 +// CHECK-STATIC-FUNC: File 0, 16:10 -> 18:4 = (#0 - #1) // 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) +// CHECK-STATIC-FUNC2: File 0, 21:33 -> 29:2 = 0 |