Tests for MQ examples

This commit is contained in:
Alexey Rybalchenko 2017-08-23 11:12:29 +02:00 committed by Mohammad Al-Turany
parent 221d2567f0
commit eeb994a584
2 changed files with 4 additions and 2 deletions

View File

@ -559,8 +559,6 @@ void FairMQDevice::RunWrapper()
Run(); Run();
} }
PostRun();
} }
catch (const out_of_range& oor) catch (const out_of_range& oor)
{ {
@ -574,6 +572,8 @@ void FairMQDevice::RunWrapper()
ChangeState(internal_READY); ChangeState(internal_READY);
} }
PostRun();
rateLogger.join(); rateLogger.join();
} }

View File

@ -291,6 +291,8 @@ struct FairMQFSM_ : public msmf::state_machine_def<FairMQFSM_>
{ {
fsm.fStateChangeCallback(READY); fsm.fStateChangeCallback(READY);
} }
fsm.Unblock();
} }
}; };