Julian Lettner 9360f1a191 [Sanitizer] Fix sanitizer tests without reducing optimization levels
As discussed, these tests are compiled with optimization to mimic real
sanitizer usage [1].

Let's mark relevant functions with `noinline` so we can continue to
check against the stack traces in the report.

[1] https://reviews.llvm.org/D96198

This reverts commit 04af72c5423eb5ff7c0deba2d08cb46d583bb9d4.

Differential Revision: https://reviews.llvm.org/D96357
2021-02-11 15:22:20 -08:00

53 lines
942 B
C++

// RUN: %clang_tsan -O1 %s -o %t && %deflake %run %t 2>&1 | FileCheck %s
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <setjmp.h>
#include <string.h>
void bar(jmp_buf env) {
volatile int x = 42;
jmp_buf env2;
memcpy(env2, env, sizeof(jmp_buf));
longjmp(env2, 42);
x++;
}
void foo(jmp_buf env) {
volatile int x = 42;
bar(env);
x++;
}
void badguy() __attribute__((noinline)) {
pthread_mutex_t mtx;
pthread_mutex_init(&mtx, 0);
pthread_mutex_lock(&mtx);
pthread_mutex_destroy(&mtx);
}
void mymain() __attribute__((noinline)) {
jmp_buf env;
if (setjmp(env) == 42) {
badguy();
return;
}
foo(env);
fprintf(stderr, "FAILED\n");
}
int main() {
volatile int x = 42;
mymain();
return x;
}
// CHECK-NOT: FAILED
// CHECK: WARNING: ThreadSanitizer: destroy of a locked mutex
// CHECK: #0 pthread_mutex_destroy
// CHECK: #1 badguy
// CHECK: #2 mymain
// CHECK: #3 main