Files
clang-p2996/compiler-rt/test/tsan/longjmp3.cpp
Julian Lettner 04af72c542 [Sanitizer] Fix failing sanitizer tests
The new pass manager was enabled by default [1].

The commit message states the following relevant differences:
  * The inliner works slightly differently
  * -O1 does some amount of inlining

These tests are affected because they specify `-O1` and then check the
reported stack trace.

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

Differential Revision: https://reviews.llvm.org/D96198
2021-02-08 09:56:32 -08:00

50 lines
811 B
C++

// RUN: %clang_tsan %s -o %t && %deflake %run %t 2>&1 | FileCheck %s
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <setjmp.h>
void bar(jmp_buf env) {
volatile int x = 42;
longjmp(env, 42);
x++;
}
void foo(jmp_buf env) {
volatile int x = 42;
bar(env);
x++;
}
void badguy() {
pthread_mutex_t mtx;
pthread_mutex_init(&mtx, 0);
pthread_mutex_lock(&mtx);
pthread_mutex_destroy(&mtx);
}
void mymain() {
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