From 5498836b1f0f7272013dc2415f6da198de5027af Mon Sep 17 00:00:00 2001
From: Nicolas Pope <nwpope@utu.fi>
Date: Sun, 23 Aug 2020 13:14:11 +0300
Subject: [PATCH] Fix recsend test

---
 components/streams/test/recsend_unit.cpp | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/components/streams/test/recsend_unit.cpp b/components/streams/test/recsend_unit.cpp
index 077270b93..9a3e71fe9 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 );
-- 
GitLab