Kaydet (Commit) f45183fc authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Add a newline and fflush so that it actually shows up in the output

Change-Id: Iea123118614ecf038883a0d51337042574ebc6b2
üst 6e8ec907
...@@ -42,7 +42,8 @@ public: ...@@ -42,7 +42,8 @@ public:
aWait.Seconds = mnSeconds; aWait.Seconds = mnSeconds;
aWait.Nanosec = 1000000; // +1ms aWait.Nanosec = 1000000; // +1ms
osl::Thread::wait( aWait ); 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); CPPUNIT_ASSERT_MESSAGE("watchdog triggered", false);
} }
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment