diff options
author | Tor Lillqvist <tml@collabora.com> | 2015-08-28 09:40:02 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2015-08-28 09:40:02 +0300 |
commit | f45183fcdef53237af6aff62211751c6b4f542c0 (patch) | |
tree | 10376e5b74d670ea9cd61db28b868eb778f9d443 /vcl/qa/cppunit | |
parent | 6e8ec907dce656b81486889bf27489ad866cebd2 (diff) |
Add a newline and fflush so that it actually shows up in the output
Change-Id: Iea123118614ecf038883a0d51337042574ebc6b2
Diffstat (limited to 'vcl/qa/cppunit')
-rw-r--r-- | vcl/qa/cppunit/timer.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/vcl/qa/cppunit/timer.cxx b/vcl/qa/cppunit/timer.cxx index 64a1ab93ed8e..1c08ff9c791b 100644 --- a/vcl/qa/cppunit/timer.cxx +++ b/vcl/qa/cppunit/timer.cxx @@ -42,7 +42,8 @@ public: aWait.Seconds = mnSeconds; aWait.Nanosec = 1000000; // +1ms osl::Thread::wait( aWait ); - fprintf(stderr, "ERROR: WatchDog timer thread expired, failing the test!"); + fprintf(stderr, "ERROR: WatchDog timer thread expired, failing the test!\n"); + fflush(stderr); CPPUNIT_ASSERT_MESSAGE("watchdog triggered", false); } }; |