diff options
Diffstat (limited to 'compiler-rt/test/tsan/sunrpc.cc')
-rw-r--r-- | compiler-rt/test/tsan/sunrpc.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/test/tsan/sunrpc.cc b/compiler-rt/test/tsan/sunrpc.cc index 579816d6409..5cfb5344ec1 100644 --- a/compiler-rt/test/tsan/sunrpc.cc +++ b/compiler-rt/test/tsan/sunrpc.cc @@ -19,7 +19,7 @@ int main(int argc, char *argv[]) { pthread_create(&th[1], 0, thr, 0); pthread_join(th[0], 0); pthread_join(th[1], 0); - printf("DONE\n"); + fprintf(stderr, "DONE\n"); // CHECK: DONE return 0; } |