From: Date: Thu, 31 Jan 2013 04:39:54 +0000 (+0000) Subject: Make sure stderr is not buffered. X-Git-Tag: submit/tizen/20180313.064233~106 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e6af5ea5f195f456f28fdec1dafad007cdd10086;p=platform%2Fupstream%2Fglog.git Make sure stderr is not buffered. git-svn-id: https://google-glog.googlecode.com/svn/trunk@130 eb4d4688-79bd-11dd-afb4-1d65580434c0 --- diff --git a/src/logging_unittest.cc b/src/logging_unittest.cc index 2a58aae..d7e95cf 100644 --- a/src/logging_unittest.cc +++ b/src/logging_unittest.cc @@ -178,6 +178,9 @@ int main(int argc, char **argv) { #ifdef HAVE_LIB_GFLAGS ParseCommandLineFlags(&argc, &argv, true); #endif + // Make sure stderr is not buffered as stderr seems to be buffered + // on recent windows. + setbuf(stderr, NULL); // Test some basics before InitGoogleLogging: CaptureTestStderr();