diff options
Diffstat (limited to 'llvm/test/tools/sancov/covered_functions.test')
-rw-r--r-- | llvm/test/tools/sancov/covered_functions.test | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/llvm/test/tools/sancov/covered_functions.test b/llvm/test/tools/sancov/covered_functions.test new file mode 100644 index 00000000000..0e110b16482 --- /dev/null +++ b/llvm/test/tools/sancov/covered_functions.test @@ -0,0 +1,13 @@ +RUN: sancov -obj %p/Inputs/test-linux_x86_64 -covered_functions %p/Inputs/test-linux_x86_64.sancov | FileCheck %s +RUN: sancov -obj %p/Inputs/test-linux_x86_64 -covered_functions %p/Inputs/test-linux_x86_64-1.sancov | FileCheck --check-prefix=MULTIPLE_FILES %s +RUN: sancov -obj %p/Inputs/test-linux_x86_64 -demangle=0 -covered_functions %p/Inputs/test-linux_x86_64.sancov | FileCheck --check-prefix=NO_DEMANGLE %s + +CHECK: Inputs/test.cpp:12 bar(std::string) +CHECK: Inputs/test.cpp:14 main + +MULTIPLE_FILES: {{^}}foo.cpp:5 foo() +MULTIPLE_FILES: {{^}}test.cpp:12 bar(std::string) +MULTIPLE_FILES: {{^}}test.cpp:14 main + +NO_DEMANGLE: Inputs/test.cpp:12 _Z3barSs +NO_DEMANGLE: Inputs/test.cpp:14 main |