diff --git a/components/streams/test/recsend_unit.cpp b/components/streams/test/recsend_unit.cpp index 077270b935098f318faef3f0f70eb9b1da45f83f..9a3e71fe9c4e88ad3a35cd20682cf5afb4522233 100644 --- a/components/streams/test/recsend_unit.cpp +++ b/components/streams/test/recsend_unit.cpp @@ -152,7 +152,7 @@ TEST_CASE( "Multi-thread stability testing" ) { //ftl::pool.restart(4); - ftl::timer::setInterval(20); + ftl::timer::setInterval(40); ftl::timer::start(false); SECTION("One frame, two channel") { @@ -169,7 +169,6 @@ TEST_CASE( "Multi-thread stability testing" ) { int count = 0; ftl::data::FrameSetPtr result = nullptr; auto h = receiver->onFrameSet([&count,&result](const ftl::data::FrameSetPtr &fs) { - LOG(INFO) << "FS RECV: " << fs->timestamp(); count++; if (result) REQUIRE( result->timestamp() <= fs->timestamp()-20 ); REQUIRE( fs->frames.size() == 1 ); @@ -218,7 +217,6 @@ TEST_CASE( "Multi-thread stability testing" ) { int count = 0; ftl::data::FrameSetPtr result = nullptr; auto h = receiver->onFrameSet([&count,&result](const ftl::data::FrameSetPtr &fs) { - LOG(INFO) << "FS RECV: " << fs->timestamp(); count++; if (result) { REQUIRE( result->timestamp() <= fs->timestamp()-20 );