Remove controller input for several tests

The affected tests have independent shutdown
  conditions that race with the controller inputs.
This commit is contained in:
Alexey Rybalchenko
2019-03-12 15:49:05 +01:00
committed by Dennis Klein
parent 74881d27e3
commit 1a00f3edbd
5 changed files with 67 additions and 157 deletions

View File

@@ -38,12 +38,9 @@ class Receiver : public FairMQDevice
auto Run() -> void override
{
auto msg = FairMQMessagePtr{NewMessage()};
if (Receive(msg, fChannelName) >= 0)
{
if (Receive(msg, fChannelName) >= 0) {
LOG(info) << "received empty message";
}
else
{
} else {
LOG(error) << "fair::mq::test::Receiver::Run(): Receive(msg, fChannelName) < 0";
}
};