mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-28 15:58:57 -04:00

Change the lit RUN commands for 3 tests to use the following pattern "FileCheck -input-file ..." instead of "cat ... | FileCheck ..." as suggested by Justin Bogner. llvm-svn: 216085
29 lines
1.0 KiB
C++
29 lines
1.0 KiB
C++
// RUN: %clang_cc1 -fprofile-instr-generate -fcoverage-mapping -dump-coverage-mapping -emit-llvm-only -main-file-name nestedclass.cpp %s > %tmapping
|
|
// RUN: FileCheck -input-file %tmapping %s --check-prefix=CHECK-OUTER
|
|
// RUN: FileCheck -input-file %tmapping %s --check-prefix=CHECK-INNER
|
|
// RUN: FileCheck -input-file %tmapping %s --check-prefix=CHECK-INNERMOST
|
|
|
|
struct Test { // CHECK-OUTER: emitTest
|
|
void emitTest() { // CHECK-OUTER: File 0, [[@LINE]]:19 -> [[@LINE+2]]:4 = #0 (HasCodeBefore = 0)
|
|
int i = 0;
|
|
}
|
|
struct Test2 { // CHECK-INNER: emitTest2
|
|
void emitTest2() { // CHECK-INNER: File 0, [[@LINE]]:22 -> [[@LINE+2]]:6 = #0 (HasCodeBefore = 0)
|
|
int i = 0;
|
|
}
|
|
struct Test3 { // CHECK-INNERMOST: emitTest3
|
|
static void emitTest3() { // CHECK-INNERMOST: File 0, [[@LINE]]:31 -> [[@LINE+2]]:8 = 0 (HasCodeBefore = 0)
|
|
int i = 0;
|
|
}
|
|
};
|
|
};
|
|
};
|
|
|
|
int main() {
|
|
Test t;
|
|
Test::Test2 t2;
|
|
t.emitTest();
|
|
t2.emitTest2();
|
|
return 0;
|
|
}
|