Skip to content
Snippets Groups Projects
Commit d0897aee authored by Marcel Loose's avatar Marcel Loose :sunglasses:
Browse files

Task #5291: tMACfeedback and tstartBGL cannot run concurrently, because...

Task #5291: tMACfeedback and tstartBGL cannot run concurrently, because they're using the same port to connect to the mock OnlineControl process (thanks for choosing a port based on obs-id :( ). The robust way to fix this is to enforce serialization (which I have done). The other (less robust) solution would be to change the obs-id in one of the parsets.
parent a9fb8c63
No related branches found
No related tags found
No related merge requests found
...@@ -33,6 +33,8 @@ set_tests_properties( ...@@ -33,6 +33,8 @@ set_tests_properties(
tCorrelate_3sec_2st_5sb tCorrelate_3sec_2st_5sb
tBeamform_1sec_1st_5sb_noflagging tBeamform_1sec_1st_5sb_noflagging
tBeamform_incoherent_2sec_1st_5sb_noflagging tBeamform_incoherent_2sec_1st_5sb_noflagging
tstartBGL
tMACfeedback
PROPERTIES RUN_SERIAL ON PROPERTIES RUN_SERIAL ON
) )
......
...@@ -28,10 +28,12 @@ wait $ONLINECONTROL_PID ...@@ -28,10 +28,12 @@ wait $ONLINECONTROL_PID
ONLINECONTROLRESULT=$? ONLINECONTROLRESULT=$?
if [ $OBSRESULT -gt 0 ]; then if [ $OBSRESULT -gt 0 ]; then
echo "runObservation.sh failed (status: $OBSRESULT)"
exit $OBSRESULT exit $OBSRESULT
fi fi
if [ $ONLINECONTROLRESULT -gt 0 ]; then if [ $ONLINECONTROLRESULT -gt 0 ]; then
echo "MockOnlineControl.sh failed (status: $ONLINECONTROLRESULT)"
exit $ONLINECONTROLRESULT exit $ONLINECONTROLRESULT
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment