Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / compiler-rt / test / tsan / libdispatch / sync-norace.c
blobc707dd64bc7c617f0e94b7735cc37133357cc4f7
1 // RUN: %clang_tsan %s -o %t
2 // RUN: %run %t 2>&1 | FileCheck %s --implicit-check-not='ThreadSanitizer'
4 #include "dispatch/dispatch.h"
6 #include <stdio.h>
8 long global;
10 static const long nIter = 1000;
12 int main() {
13 fprintf(stderr, "Hello world.\n");
14 dispatch_semaphore_t done = dispatch_semaphore_create(0);
16 dispatch_queue_t serial_q = dispatch_queue_create("my.queue", DISPATCH_QUEUE_SERIAL);
18 global = 42;
19 for (int i = 0; i < nIter; i++) {
20 dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
21 dispatch_sync(serial_q, ^{
22 global = i;
24 if (i == nIter - 1) {
25 dispatch_semaphore_signal(done);
27 });
28 });
31 dispatch_semaphore_wait(done, DISPATCH_TIME_FOREVER);
32 fprintf(stderr, "Done.\n");
35 // CHECK: Hello world.
36 // CHECK: Done.