mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 12:12:47 +01:00
0372f5b7df
Summary: The command prints out list of functions that were not entered. To do this, addresses are first converted to function locations. Set operations are used for function locations. Differential Revision: http://reviews.llvm.org/D14889 review llvm-svn: 254742
14 lines
694 B
Plaintext
14 lines
694 B
Plaintext
REQUIRES: x86_64-linux
|
|
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 -strip_path_prefix=Inputs/ %p/Inputs/test-linux_x86_64.sancov | FileCheck --check-prefix=STRIP_PATH %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
|
|
|
|
STRIP_PATH: {{^}}test.cpp:12 bar(std::string)
|
|
STRIP_PATH: {{^}}test.cpp:14 main
|
|
|
|
NO_DEMANGLE: test.cpp:12 _Z3barSs
|
|
NO_DEMANGLE: test.cpp:14 main
|