r216020 - Test: Coverage Mapping: add missing RUN commands

Alex Lorenz arphaman at gmail.com
Tue Aug 19 13:51:54 PDT 2014


Author: arphaman
Date: Tue Aug 19 15:51:54 2014
New Revision: 216020

URL: http://llvm.org/viewvc/llvm-project?rev=216020&view=rev
Log:
Test: Coverage Mapping: add missing RUN commands

Add the llvm-lit RUN commands for the two coverage mapping tests
that filecheck a temporary file.

Modified:
    cfe/trunk/test/CoverageMapping/classtemplate.cpp
    cfe/trunk/test/CoverageMapping/header.cpp

Modified: cfe/trunk/test/CoverageMapping/classtemplate.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CoverageMapping/classtemplate.cpp?rev=216020&r1=216019&r2=216020&view=diff
==============================================================================
--- cfe/trunk/test/CoverageMapping/classtemplate.cpp (original)
+++ cfe/trunk/test/CoverageMapping/classtemplate.cpp Tue Aug 19 15:51:54 2014
@@ -1,7 +1,7 @@
 // RUN: %clang_cc1 -triple %itanium_abi_triple -fprofile-instr-generate -fcoverage-mapping -dump-coverage-mapping -emit-llvm-only -main-file-name classtemplate.cpp %s > %tmapping
-// cat %tmapping | FileCheck %s --check-prefix=CHECK-CONSTRUCTOR
-// cat %tmapping | FileCheck %s --check-prefix=CHECK-GETTER
-// cat %tmapping | FileCheck %s --check-prefix=CHECK-SETTER
+// RUN: cat %tmapping | FileCheck %s --check-prefix=CHECK-CONSTRUCTOR
+// RUN: cat %tmapping | FileCheck %s --check-prefix=CHECK-GETTER
+// RUN: cat %tmapping | FileCheck %s --check-prefix=CHECK-SETTER
 
 template<class TT>
 class Test {

Modified: cfe/trunk/test/CoverageMapping/header.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CoverageMapping/header.cpp?rev=216020&r1=216019&r2=216020&view=diff
==============================================================================
--- cfe/trunk/test/CoverageMapping/header.cpp (original)
+++ cfe/trunk/test/CoverageMapping/header.cpp Tue Aug 19 15:51:54 2014
@@ -1,7 +1,7 @@
 // RUN: %clang_cc1 -fprofile-instr-generate -fcoverage-mapping -dump-coverage-mapping -emit-llvm-only -main-file-name tu1.cpp %s > %tmapping
-// cat %tmapping | FileCheck %s --check-prefix=CHECK-FUNC
-// cat %tmapping | FileCheck %s --check-prefix=CHECK-STATIC-FUNC
-// cat %tmapping | FileCheck %s --check-prefix=CHECK-STATIC-FUNC2
+// RUN: cat %tmapping | FileCheck %s --check-prefix=CHECK-FUNC
+// RUN: cat %tmapping | FileCheck %s --check-prefix=CHECK-STATIC-FUNC
+// RUN: cat %tmapping | FileCheck %s --check-prefix=CHECK-STATIC-FUNC2
 
 #include "Inputs/header1.h"
 
@@ -14,14 +14,14 @@ int main() {
 // 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, 3:10 -> 3:28 = #0 (HasCodeBefore = 0, Expanded file = 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, 3:10 -> 3:28 = #0 (HasCodeBefore = 0, Expanded file = 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, 3:10 -> 3:28 = 0 (HasCodeBefore = 0, Expanded file = 0)
+// CHECK-STATIC-FUNC2: Expansion,File 1, 6:10 -> 6:28 = 0 (HasCodeBefore = 0, Expanded file = 0)





More information about the cfe-commits mailing list