]> git.proxmox.com Git - rustc.git/blame - src/compiler-rt/test/asan/TestCases/Linux/asan_default_suppressions.cc
New upstream version 1.19.0+dfsg3
[rustc.git] / src / compiler-rt / test / asan / TestCases / Linux / asan_default_suppressions.cc
CommitLineData
92a42be0
SL
1// Test that we use the suppressions from __asan_default_suppressions.
2// RUN: %clangxx_asan %s -o %t && not %run %t 2>&1 | FileCheck %s
3extern "C" {
4 const char *__asan_default_suppressions() { return "FooBar"; }
5}
6// CHECK: AddressSanitizer: failed to parse suppressions
7int main() {}