diff options
author | Vitaly Buka <vitalybuka@google.com> | 2017-09-20 07:16:08 +0000 |
---|---|---|
committer | Vitaly Buka <vitalybuka@google.com> | 2017-09-20 07:16:08 +0000 |
commit | 8a65209d0ba5f4553fa1eba89e2e2fcf43c9c01d (patch) | |
tree | 2b33459f3749b84ca777badd16bd8c7c517b7abe | |
parent | cf096c2af3b7f76d652878c7b3c2a804fe30ab61 (diff) | |
download | bcm5719-llvm-8a65209d0ba5f4553fa1eba89e2e2fcf43c9c01d.tar.gz bcm5719-llvm-8a65209d0ba5f4553fa1eba89e2e2fcf43c9c01d.zip |
[asan] Try to fix windows test by fflush(stderr)
llvm-svn: 313728
-rw-r--r-- | compiler-rt/test/asan/TestCases/error_report_callback.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler-rt/test/asan/TestCases/error_report_callback.cc b/compiler-rt/test/asan/TestCases/error_report_callback.cc index 354369a67c4..8c5bbe418fc 100644 --- a/compiler-rt/test/asan/TestCases/error_report_callback.cc +++ b/compiler-rt/test/asan/TestCases/error_report_callback.cc @@ -6,6 +6,7 @@ static void ErrorReportCallbackOneToZ(const char *report) { fprintf(stderr, "ABCDEF%sGHIJKL", report); + fflush(stderr); } int main(int argc, char **argv) { |