1 // Check that there is a warning when atos fails to symbolize an address
2 // and that atos continues symbolicating correctly after.
4 // RUN: %clangxx -O0 %s -o %t
5 // RUN: not %run %t 2>&1 | FileCheck %s
7 // This test tests for undefined behavior and is leading to various failures.
8 // Going to disable to unblock CI and rethink a test for this. rdar://107846128
12 void *invalid_addr
= reinterpret_cast<void *>(0xDEADBEEF);
13 void (*func_ptr
)() = reinterpret_cast<void (*)()>(invalid_addr
);
20 // CHECK: WARNING: atos failed to symbolize address{{.*}}
21 // CHECK: {{.*}}atos-symbolized-recover.cpp:[[@LINE-3]]{{.*}}