Commit 0004490f authored by hardy's avatar hardy

rfsim RA check : check html formatting

parent 15005cfd
...@@ -767,38 +767,49 @@ function report_test { ...@@ -767,38 +767,49 @@ function report_test {
echo " </tr>" >> ./test_simulator_results.html echo " </tr>" >> ./test_simulator_results.html
#RA test #RA test
#check formatting
echo " <tr>" >> ./test_simulator_results.html
echo " <td>ENB LOG file --- UE LOG file </td>" >> ./test_simulator_results.html
echo " <td>Check RA succeeded</td>" >> ./test_simulator_results.html
echo " <td bgcolor = \"red\" >KO</td>" >> ./test_simulator_results.html
echo " <td><pre>" >> ./test_simulator_results.html
echo "<font color = \"red\">No check yet</font>" >> ./test_simulator_results.html
echo " </pre></td>" >> ./test_simulator_results.html
echo " </tr>" >> ./test_simulator_results.html
#RH file names to be checked #RH file names to be checked
RA_ENB_LOG=$ARCHIVES_LOC/RA_CHECK_${TMODE}_${BW}prb_${CN_CONFIG}_gnb.log #RA_ENB_LOG=$ARCHIVES_LOC/RA_CHECK_${TMODE}_${BW}prb_${CN_CONFIG}_gnb.log
UE_LOG=`echo $ENB_LOG | sed -e "s#gnb#ue#"` #UE_LOG=`echo $ENB_LOG | sed -e "s#gnb#ue#"`
RA_UE_LOG= #RA_UE_LOG=
if [ -f $ENB_LOG ] && [ -f $UE_LOG ] #if [ -f $ENB_LOG ] && [ -f $UE_LOG ]
then #then
#RH file names to be checked # #RH file names to be checked
NAME_ENB=`echo $ENB_LOG | sed -e "s#$ARCHIVES_LOC/##"` # NAME_ENB=`echo $ENB_LOG | sed -e "s#$ARCHIVES_LOC/##"`
NAME_UE=`echo $UE_LOG | sed -e "s#$ARCHIVES_LOC/##"` # NAME_UE=`echo $UE_LOG | sed -e "s#$ARCHIVES_LOC/##"`
echo " <tr>" >> ./test_simulator_results.html # echo " <tr>" >> ./test_simulator_results.html
echo " <td>$NAME_ENB --- $NAME_UE</td>" >> ./test_simulator_results.html # echo " <td>$NAME_ENB --- $NAME_UE</td>" >> ./test_simulator_results.html
echo " <td>N/A</td>" >> ./test_simulator_results.html # echo " <td>N/A</td>" >> ./test_simulator_results.html
#gNB RA check # #gNB RA check
GNB_RECEIVED=`egrep -c "received correctly" $RA_ENB_LOG` # GNB_RECEIVED=`egrep -c "received correctly" $RA_ENB_LOG`
GNB_CONNECTED=`egrep -c "now 5G connected" $RA_ENB_LOG` # GNB_CONNECTED=`egrep -c "now 5G connected" $RA_ENB_LOG`
#UE RA check # #UE RA check
UE_RA_PROC_OK=`egrep -c "RA procedure succeeded" $RA_UE_LOG` # UE_RA_PROC_OK=`egrep -c "RA procedure succeeded" $RA_UE_LOG`
if [ $GNB_RECEIVED -gt 0 ] && [ $GNB_CONNECTED -gt 0 ] && [ $UE_RA_PROC_OK -gt 0 ] # if [ $GNB_RECEIVED -gt 0 ] && [ $GNB_CONNECTED -gt 0 ] && [ $UE_RA_PROC_OK -gt 0 ]
then # then
echo " <td bgcolor = \"green\" >OK</td>" >> ./test_simulator_results.html # echo " <td bgcolor = \"green\" >OK</td>" >> ./test_simulator_results.html
else # else
echo " <td bgcolor = \"red\" >KO</td>" >> ./test_simulator_results.html # echo " <td bgcolor = \"red\" >KO</td>" >> ./test_simulator_results.html
fi # fi
echo " </pre></td>" >> ./test_simulator_results.html # echo " </pre></td>" >> ./test_simulator_results.html
echo " </tr>" >> ./test_simulator_results.html # echo " </tr>" >> ./test_simulator_results.html
fi #fi
#sync test #sync test
ENB_LOG=$ARCHIVES_LOC/${TMODE}_${BW}prb_${CN_CONFIG}_gnb.log ENB_LOG=$ARCHIVES_LOC/${TMODE}_${BW}prb_${CN_CONFIG}_gnb.log
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment