1 // TODO: Investigate these failures
2 // XFAIL: asan, tsan, ubsan
3 
4 #include <assert.h>
5 #include <libunwind.h>
6 
main(int,char **)7 int main(int, char**) {
8   unw_context_t context;
9   int ret = unw_getcontext(&context);
10   assert(ret == UNW_ESUCCESS);
11   return 0;
12 }
13