ASan: unbreak Windows build by limiting backtrace* tests to glibc
authorThurston Dang <thurston@google.com>
Sat, 13 May 2023 05:56:28 +0000 (05:56 +0000)
committerThurston Dang <thurston@google.com>
Sat, 13 May 2023 05:56:28 +0000 (05:56 +0000)
commitd9377c1deda2fa1ba8ee7a0a59831d22ec57284f
tree28d69fd97bf8f3c839b56fe8785d6e01be46ca43
parent04fd535409ddc601a4654e38ff28db3f13c10713
ASan: unbreak Windows build by limiting backtrace* tests to glibc

My newly added backtrace test (https://reviews.llvm.org/D150491)
broke the Windows buildbot (https://lab.llvm.org/buildbot/#/builders/127/builds/48103)
because they do not have execinfo.h.
I expect the same will happen with the backtrace_symbols test (https://reviews.llvm.org/D150498) as well.

This patch does a quick fix by restricting the test scope to glibc-2.27.
(A tricker fix would take into account SANITIZER_INTERCEPT_BACKTRACE,
which is defined as (SI_FREEBSD || SI_NETBSD || SI_GLIBC || SI_SOLARIS))
compiler-rt/test/asan/TestCases/backtrace_interceptor.cpp
compiler-rt/test/asan/TestCases/backtrace_symbols_interceptor.cpp