From d890b757f86fb9e816f260a662ed5f3d651ce3b8 Mon Sep 17 00:00:00 2001 From: Martin Hierholzer <martin.hierholzer@desy.de> Date: Thu, 30 Jun 2016 18:25:35 +0200 Subject: [PATCH] increased some timeouts in tests to make sure it works with valgrind as well --- tests/executables_src/testAppModuleConnections.cc | 8 ++++---- tests/executables_src/testTrigger.cc | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/tests/executables_src/testAppModuleConnections.cc b/tests/executables_src/testAppModuleConnections.cc index 31760ea6..dee8f905 100644 --- a/tests/executables_src/testAppModuleConnections.cc +++ b/tests/executables_src/testAppModuleConnections.cc @@ -90,7 +90,7 @@ BOOST_AUTO_TEST_CASE_TEMPLATE( testTwoScalarPushAccessors, T, test_types ) { app.testModule.feedingPush.write(); // check that the consumer now receives the just written value - BOOST_CHECK(futRead.wait_for(std::chrono::milliseconds(200)) == std::future_status::ready); + BOOST_CHECK(futRead.wait_for(std::chrono::milliseconds(2000)) == std::future_status::ready); BOOST_CHECK( app.testModule.consumingPush == 120 ); } @@ -149,9 +149,9 @@ BOOST_AUTO_TEST_CASE_TEMPLATE( testFourScalarPushAccessors, T, test_types ) { app.testModule.feedingPush.write(); // check that the consumers now receive the just written value - BOOST_CHECK(futRead.wait_for(std::chrono::milliseconds(200)) == std::future_status::ready); - BOOST_CHECK(futRead2.wait_for(std::chrono::milliseconds(200)) == std::future_status::ready); - BOOST_CHECK(futRead3.wait_for(std::chrono::milliseconds(200)) == std::future_status::ready); + BOOST_CHECK(futRead.wait_for(std::chrono::milliseconds(2000)) == std::future_status::ready); + BOOST_CHECK(futRead2.wait_for(std::chrono::milliseconds(2000)) == std::future_status::ready); + BOOST_CHECK(futRead3.wait_for(std::chrono::milliseconds(2000)) == std::future_status::ready); BOOST_CHECK( app.testModule.consumingPush == 120 ); BOOST_CHECK( app.testModule.consumingPush2 == 120 ); BOOST_CHECK( app.testModule.consumingPush3 == 120 ); diff --git a/tests/executables_src/testTrigger.cc b/tests/executables_src/testTrigger.cc index 9278639a..9f6e6024 100644 --- a/tests/executables_src/testTrigger.cc +++ b/tests/executables_src/testTrigger.cc @@ -123,7 +123,7 @@ BOOST_AUTO_TEST_CASE_TEMPLATE( testTriggerDevToApp, T, test_types ) { app.testModule.theTrigger.write(); // check that the consumer now receives the just written value - BOOST_CHECK(futRead.wait_for(std::chrono::milliseconds(200)) == std::future_status::ready); + BOOST_CHECK(futRead.wait_for(std::chrono::milliseconds(2000)) == std::future_status::ready); BOOST_CHECK( app.testModule.consumingPush == 120 ); } @@ -159,7 +159,7 @@ BOOST_AUTO_TEST_CASE_TEMPLATE( testTriggerDevToCS, T, test_types ) { app.testModule.feedingToDevice.write(); BOOST_CHECK(myCSVar->receive() == false); app.testModule.theTrigger.write(); - CHECK_TIMEOUT(myCSVar->receive() == true, 200); + CHECK_TIMEOUT(myCSVar->receive() == true, 2000); BOOST_CHECK(*myCSVar == 42); BOOST_CHECK(myCSVar->receive() == false); @@ -168,7 +168,7 @@ BOOST_AUTO_TEST_CASE_TEMPLATE( testTriggerDevToCS, T, test_types ) { app.testModule.feedingToDevice.write(); BOOST_CHECK(myCSVar->receive() == false); app.testModule.theTrigger.write(); - CHECK_TIMEOUT(myCSVar->receive() == true, 200); + CHECK_TIMEOUT(myCSVar->receive() == true, 2000); BOOST_CHECK(*myCSVar == 120); BOOST_CHECK(myCSVar->receive() == false); -- GitLab