summaryrefslogtreecommitdiff
path: root/system_wrappers/source/thread_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'system_wrappers/source/thread_unittest.cc')
-rw-r--r--system_wrappers/source/thread_unittest.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/system_wrappers/source/thread_unittest.cc b/system_wrappers/source/thread_unittest.cc
index 25095e65..f54d065d 100644
--- a/system_wrappers/source/thread_unittest.cc
+++ b/system_wrappers/source/thread_unittest.cc
@@ -12,11 +12,13 @@
#include "testing/gtest/include/gtest/gtest.h"
#include "webrtc/system_wrappers/interface/scoped_ptr.h"
+#include "webrtc/system_wrappers/interface/sleep.h"
namespace webrtc {
// Function that does nothing, and reports success.
bool NullRunFunction(void* obj) {
+ SleepMs(0); // Hand over timeslice, prevents busy looping.
return true;
}
@@ -32,6 +34,7 @@ TEST(ThreadTest, StartStop) {
bool SetFlagRunFunction(void* obj) {
bool* obj_as_bool = static_cast<bool*>(obj);
*obj_as_bool = true;
+ SleepMs(0); // Hand over timeslice, prevents busy looping.
return true;
}