mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
29e3ce3cdf
Original commit message: [sancov] Run sancov tests on more platforms The only tests that need to be run on Linux are the ones that use C++ demangling. I'm assuming they will fail on Mac, since __cxa_demangle there won't handle the non-double-underscore prefixed mangled names. llvm-svn: 271763
11 lines
549 B
Plaintext
11 lines
549 B
Plaintext
REQUIRES: x86_64-linux
|
|
RUN: sancov -covered-functions -blacklist %p/Inputs/fun_blacklist.txt %p/Inputs/test-linux_x86_64 %p/Inputs/test-linux_x86_64.0.sancov | FileCheck %s
|
|
RUN: sancov -covered-functions -blacklist %p/Inputs/src_blacklist.txt %p/Inputs/test-linux_x86_64 %p/Inputs/test-linux_x86_64.1.sancov | FileCheck --check-prefix=CHECK1 %s
|
|
|
|
CHECK-NOT: Inputs{{[/\\]}}test.cpp:12 bar(std::string)
|
|
CHECK: Inputs{{[/\\]}}test.cpp:14 main
|
|
|
|
CHECK1-NOT: foo
|
|
CHECK1: Inputs{{[/\\]}}test.cpp:12 bar(std::string)
|
|
CHECK1: Inputs{{[/\\]}}test.cpp:14 main
|