1 // Test that dyld interposition works in the presence of DYLD_LIBRARY_PATH.
3 // RUN: %clang_tsan %s -o %t
4 // RUN: env DYLD_LIBRARY_PATH=/usr/lib/system/introspection/ %run %t 2>&1 | FileCheck %s --implicit-check-not='ThreadSanitizer'
9 void *Thread(void *a
) {
10 fprintf(stderr
, "Hello from pthread\n");
16 pthread_create(&t
, NULL
, Thread
, NULL
);
17 pthread_join(t
, NULL
);
18 fprintf(stderr
, "Done.\n");
21 // CHECK: Hello from pthread