You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
373 B
24 lines
373 B
// RUN: %clang_tsan -O1 %s -o %t && %run %t 2>&1 | FileCheck %s
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <setjmp.h>
|
|
|
|
int foo(jmp_buf env) {
|
|
longjmp(env, 42);
|
|
}
|
|
|
|
int main() {
|
|
jmp_buf env;
|
|
if (setjmp(env) == 42) {
|
|
fprintf(stderr, "JUMPED\n");
|
|
return 0;
|
|
}
|
|
foo(env);
|
|
fprintf(stderr, "FAILED\n");
|
|
return 0;
|
|
}
|
|
|
|
// CHECK-NOT: FAILED
|
|
// CHECK: JUMPED
|