Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / compiler-rt / test / tsan / libdispatch / async-norace.c
blobccda84535e48df5f54250bde71459b7c6ce1e42a
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 int main() {
11 fprintf(stderr, "Hello world.\n");
12 dispatch_semaphore_t done = dispatch_semaphore_create(0);
14 global = 42;
15 dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
16 global = 43;
18 dispatch_semaphore_signal(done);
19 });
21 dispatch_semaphore_wait(done, DISPATCH_TIME_FOREVER);
22 fprintf(stderr, "Done.\n");
25 // CHECK: Hello world.
26 // CHECK: Done.