blob: a02c8e54032a63b41c5b00c5e512b3ff6355cbd2 [file] [log] [blame]
// TODO: Investigate these failures
// XFAIL: asan, tsan, ubsan
#include <assert.h>
#include <libunwind.h>
int main(int, char**) {
unw_context_t context;
int ret = unw_getcontext(&context);
assert(ret == UNW_ESUCCESS);
return 0;
}