Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / compiler-rt / test / asan / TestCases / Linux / asan_default_suppressions.cpp
blob5ff59c1dfe7f520253f6059c67515f05187ba536
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
3 extern "C" {
4 const char *__asan_default_suppressions() { return "FooBar"; }
6 // CHECK: AddressSanitizer: failed to parse suppressions
7 int main() {}