summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--llvm/test/tools/llvm-cov/Inputs/reportFunctionPlacement.covmappingbin352 -> 0 bytes
-rw-r--r--llvm/test/tools/llvm-cov/Inputs/reportFunctionPlacement.h8
-rw-r--r--llvm/test/tools/llvm-cov/Inputs/reportFunctionPlacement.profdatabin792 -> 0 bytes
-rw-r--r--llvm/test/tools/llvm-cov/reportFunctionPlacement.cpp24
4 files changed, 0 insertions, 32 deletions
diff --git a/llvm/test/tools/llvm-cov/Inputs/reportFunctionPlacement.covmapping b/llvm/test/tools/llvm-cov/Inputs/reportFunctionPlacement.covmapping
deleted file mode 100644
index 51a5ba2c3d5..00000000000
--- a/llvm/test/tools/llvm-cov/Inputs/reportFunctionPlacement.covmapping
+++ /dev/null
Binary files differ
diff --git a/llvm/test/tools/llvm-cov/Inputs/reportFunctionPlacement.h b/llvm/test/tools/llvm-cov/Inputs/reportFunctionPlacement.h
deleted file mode 100644
index 9280e039bdc..00000000000
--- a/llvm/test/tools/llvm-cov/Inputs/reportFunctionPlacement.h
+++ /dev/null
@@ -1,8 +0,0 @@
-
-void foo(int x) {
- int y = x + 1;
-}
-
-void bar() {
-
-}
diff --git a/llvm/test/tools/llvm-cov/Inputs/reportFunctionPlacement.profdata b/llvm/test/tools/llvm-cov/Inputs/reportFunctionPlacement.profdata
deleted file mode 100644
index eec54935a14..00000000000
--- a/llvm/test/tools/llvm-cov/Inputs/reportFunctionPlacement.profdata
+++ /dev/null
Binary files differ
diff --git a/llvm/test/tools/llvm-cov/reportFunctionPlacement.cpp b/llvm/test/tools/llvm-cov/reportFunctionPlacement.cpp
deleted file mode 100644
index fef945d257e..00000000000
--- a/llvm/test/tools/llvm-cov/reportFunctionPlacement.cpp
+++ /dev/null
@@ -1,24 +0,0 @@
-// RUN: llvm-cov report %S/Inputs/reportFunctionPlacement.covmapping -instr-profile %S/Inputs/reportFunctionPlacement.profdata -no-colors 2>&1 | FileCheck %s
-// This test checks that the functions defined in header files will get
-// associated with header files rather than source files for the reports.
-
-#include "Inputs/reportFunctionPlacement.h"
-
-// CHECK: Filename Regions Miss Cover Functions Executed
-// CHECK: ---
-// CHECK: ...ortFunctionPlacement.h 2 1 50.00% 2 50.00%
-// CHECK: ...tFunctionPlacement.cpp 2 0 100.00% 2 100.00%
-// CHECK: ---
-// CHECK: TOTAL 4 1 75.00% 4 75.00%
-
-void func() {
-}
-
-int main() {
- foo(10);
- func();
- return 0;
-}
-
-// llvm-cov doesn't work on big endian yet
-// XFAIL: powerpc64-, s390x, mips-, mips64-, sparc
OpenPOWER on IntegriCloud