[ASan/Win] Don't crash when ASAN_OPTIONS have disable_core=1
[blocksruntime.git] / test / tsan / bench_rwmutex.cc
blob818ee8c82bc113da4c75e1e43f5f983a59fc5750
1 // RUN: %clangxx_tsan %s -o %t
2 // RUN: %run %t 2>&1 | FileCheck %s
4 #include "bench.h"
6 pthread_rwlock_t mtx;
8 void thread(int tid) {
9 for (int i = 0; i < bench_niter; i++) {
10 pthread_rwlock_rdlock(&mtx);
11 pthread_rwlock_unlock(&mtx);
15 void bench() {
16 pthread_rwlock_init(&mtx, 0);
17 pthread_rwlock_wrlock(&mtx);
18 pthread_rwlock_unlock(&mtx);
19 pthread_rwlock_rdlock(&mtx);
20 pthread_rwlock_unlock(&mtx);
21 start_thread_group(bench_nthread, thread);
24 // CHECK: DONE