Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / compiler-rt / test / asan / TestCases / Linux / asan_rt_confict_test-2.cpp
blob6328cbb2ce812ca4042fa0e85946f5e3646e547a
1 // Test that mixed static/dynamic sanitization of program objects
2 // is prohibited.
3 //
4 // RUN: %clangxx_asan -DBUILD_SO=1 -fPIC -shared %s -o %dynamiclib
5 // RUN: %clangxx_asan_static %s %ld_flags_rpath_exe -o %t
6 // RUN: not %run %t 2>&1 | FileCheck %s
8 // REQUIRES: asan-dynamic-runtime
9 // XFAIL: android
11 #if BUILD_SO
12 char dummy;
13 void do_access(const void *p) { dummy = ((const char *)p)[1]; }
14 #else
15 #include <stdlib.h>
16 extern void do_access(const void *p);
17 int main(int argc, char **argv) {
18 void *p = malloc(1);
19 do_access(p);
20 free(p);
21 return 0;
23 #endif
25 // CHECK: Your application is linked against incompatible ASan runtimes