diff options
| author | Kuba Brecka <kuba.brecka@gmail.com> | 2016-09-17 14:39:53 +0000 |
|---|---|---|
| committer | Kuba Brecka <kuba.brecka@gmail.com> | 2016-09-17 14:39:53 +0000 |
| commit | 0baa19004f5e2ec830d94256825c715f708208a8 (patch) | |
| tree | 273b0c4db9694cf0b7e0e046dae08e4346be77dc | |
| parent | bdbd1d28486ad10159d4b429904f026f1f37e304 (diff) | |
| download | bcm5719-llvm-0baa19004f5e2ec830d94256825c715f708208a8.tar.gz bcm5719-llvm-0baa19004f5e2ec830d94256825c715f708208a8.zip | |
[tsan] Update fork_atexit.cc to consistently print to stderr (and not stdout)
llvm-svn: 281821
| -rw-r--r-- | compiler-rt/test/tsan/fork_atexit.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/test/tsan/fork_atexit.cc b/compiler-rt/test/tsan/fork_atexit.cc index 15cf0a2485c..6e3a2f5c4ba 100644 --- a/compiler-rt/test/tsan/fork_atexit.cc +++ b/compiler-rt/test/tsan/fork_atexit.cc @@ -7,7 +7,7 @@ #include <sys/wait.h> void foo() { - printf("CHILD ATEXIT\n"); + fprintf(stderr, "CHILD ATEXIT\n"); } void *worker(void *unused) { |

