summaryrefslogtreecommitdiff
path: root/test/tsan/sunrpc.cc
diff options
context:
space:
mode:
authorRenato Golin <renato.golin@linaro.org>2016-04-14 13:31:22 +0000
committerRenato Golin <renato.golin@linaro.org>2016-04-14 13:31:22 +0000
commit2d5eb7163c0c720f7f6b61cf422c23d92a53635c (patch)
treeddf6639a18546aafef37cedac7ead5e75ea116ed /test/tsan/sunrpc.cc
parent0f9d2c5fef1ad3d92f6153570477ada540056b58 (diff)
Revert "Make tsan tests more portable (take 2)"
This reverts commit r266294, as it broke some buildbots again. :/ git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@266300 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/tsan/sunrpc.cc')
-rw-r--r--test/tsan/sunrpc.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tsan/sunrpc.cc b/test/tsan/sunrpc.cc
index 5cfb5344e..579816d64 100644
--- a/test/tsan/sunrpc.cc
+++ b/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);
- fprintf(stderr, "DONE\n");
+ printf("DONE\n");
// CHECK: DONE
return 0;
}