Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG UE
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Michael Black
OpenXG UE
Commits
e652ea40
Commit
e652ea40
authored
Oct 04, 2020
by
hardy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
finalized RFsim RA check test
parent
c764cac1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
55 additions
and
47 deletions
+55
-47
ci-scripts/reportTestLocally.sh
ci-scripts/reportTestLocally.sh
+46
-40
ci-scripts/runTestOnVM.sh
ci-scripts/runTestOnVM.sh
+9
-7
No files found.
ci-scripts/reportTestLocally.sh
View file @
e652ea40
...
@@ -766,52 +766,58 @@ function report_test {
...
@@ -766,52 +766,58 @@ function report_test {
fi
fi
echo
" </tr>"
>>
./test_simulator_results.html
echo
" </tr>"
>>
./test_simulator_results.html
#RA test
#RA test (--do-ra option)
#check formatting
echo
" <tr>"
>>
./test_simulator_results.html
#build log files names
echo
" <td>ENB LOG file --- UE LOG file </td>"
>>
./test_simulator_results.html
RA_ENB_LOG
=
$ARCHIVES_LOC
/ra_check_
${
TMODE
}
_
${
BW
}
prb_
${
CN_CONFIG
}
_gnb.log
echo
" <td>Check RA succeeded</td>"
>>
./test_simulator_results.html
RA_UE_LOG
=
$ARCHIVES_LOC
/ra_check_
${
TMODE
}
_
${
BW
}
prb_
${
CN_CONFIG
}
_ue.log
echo
" <td bgcolor =
\"
red
\"
>KO</td>"
>>
./test_simulator_results.html
if
[
-f
$RA_ENB_LOG
]
&&
[
-f
$RA_UE_LOG
]
echo
" <td><pre>"
>>
./test_simulator_results.html
then
echo
"<font color =
\"
red
\"
>No check yet</font>"
>>
./test_simulator_results.html
#get rid of full path
echo
" </pre></td>"
>>
./test_simulator_results.html
NAME_ENB
=
`
echo
$RA_ENB_LOG
|
sed
-e
"s#
$ARCHIVES_LOC
/##"
`
echo
" </tr>"
>>
./test_simulator_results.html
NAME_UE
=
`
echo
$RA_UE_LOG
|
sed
-e
"s#
$ARCHIVES_LOC
/##"
`
echo
" <tr>"
>>
./test_simulator_results.html
echo
" <td>
$NAME_ENB
---
$NAME_UE
</td>"
>>
./test_simulator_results.html
#RH file names to be checked
echo
" <td>Check if RA proc succeeded</td>"
>>
./test_simulator_results.html
#RA_ENB_LOG=$ARCHIVES_LOC/RA_CHECK_${TMODE}_${BW}prb_${CN_CONFIG}_gnb.log
#UE_LOG=`echo $ENB_LOG | sed -e "s#gnb#ue#"`
#RA_UE_LOG=
#if [ -f $ENB_LOG ] && [ -f $UE_LOG ]
#then
# #RH file names to be checked
# NAME_ENB=`echo $ENB_LOG | sed -e "s#$ARCHIVES_LOC/##"`
# NAME_UE=`echo $UE_LOG | sed -e "s#$ARCHIVES_LOC/##"`
# echo " <tr>" >> ./test_simulator_results.html
# echo " <td>$NAME_ENB --- $NAME_UE</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
"received correctly"
$RA_ENB_LOG
`
# GNB_CONNECTED=`egrep -c
"now 5G connected" $RA_ENB_LOG`
GNB_CONNECTED
=
`
egrep
"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
"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
" <td><pre>"
>>
./test_simulator_results.html
# echo " </tr>" >> ./test_simulator_results.html
if
[
$GNB_RECEIVED
-gt
0
]
#fi
then
echo
"<font color =
\"
blue
\"
>- gNB --> RA received</font>"
>>
./test_simulator_results.html
else
echo
"<font color =
\"
red
\"
><b>- gNB RA NOT RECEIVED</b></font>"
>>
./test_simulator_results.html
fi
if
[
$GNB_CONNECTED
-gt
0
]
then
echo
"<font color =
\"
blue
\"
>- gNB --> 5G connected</font>"
>>
./test_simulator_results.html
else
echo
"<font color =
\"
red
\"
><b>- gNB NOT 5G CONNECTED</b></font>"
>>
./test_simulator_results.html
fi
if
[
$UE_RA_PROC_OK
-gt
0
]
then
echo
"<font color =
\"
blue
\"
>- NR UE --> RA procedure succeded</font>"
>>
./test_simulator_results.html
else
echo
"<font color =
\"
red
\"
><b>- NR UE RA procedure failed</b></font>"
>>
./test_simulator_results.html
fi
echo
" </pre></td>"
>>
./test_simulator_results.html
echo
" </tr>"
>>
./test_simulator_results.html
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
UE_LOG
=
`
echo
$ENB_LOG
|
sed
-e
"s#gnb#ue#"
`
UE_LOG
=
`
echo
$ENB_LOG
|
sed
-e
"s#gnb#ue#"
`
if
[
-f
$ENB_LOG
]
&&
[
-f
$UE_LOG
]
if
[
-f
$ENB_LOG
]
&&
[
-f
$UE_LOG
]
...
...
ci-scripts/runTestOnVM.sh
View file @
e652ea40
...
@@ -282,11 +282,13 @@ function check_ra_result {
...
@@ -282,11 +282,13 @@ function check_ra_result {
local
LOC_UE_LOG
=
$2
local
LOC_UE_LOG
=
$2
#gNB RA test
#gNB RA test
echo
"egrep -c
\"
received correctly
\"
$1
"
echo
"Checking gNB Log for RA success"
echo
"egrep -c
\"
now 5G connected
\"
$1
"
egrep
"received correctly"
$1
egrep
"now 5G connected"
$1
#UE RA test
#UE RA test
echo
"egrep -c
\"
RA procedure succeeded
\"
$2
"
echo
'Checking UE Log for RA success'
egrep
"RA procedure succeeded"
$2
}
}
...
@@ -2213,14 +2215,14 @@ function run_test_on_vm {
...
@@ -2213,14 +2215,14 @@ function run_test_on_vm {
#check RA marker in gNB and NR UE log files
#check RA marker
s
in gNB and NR UE log files
echo
"############################################################"
echo
"############################################################"
echo
"
${
CN_CONFIG
}
: Checking RA on gNB / NR-UE"
echo
"
${
CN_CONFIG
}
: Checking RA on gNB / NR-UE"
echo
"############################################################"
echo
"############################################################"
mv
$ARCHIVES_LOC
/
$CURRENT_GNB_LOG_FILE
$ARCHIVES_LOC
/
RA_CHECK
_
$CURRENT_GNB_LOG_FILE
mv
$ARCHIVES_LOC
/
$CURRENT_GNB_LOG_FILE
$ARCHIVES_LOC
/
ra_check
_
$CURRENT_GNB_LOG_FILE
mv
$ARCHIVES_LOC
/
$CURRENT_NR_UE_LOG_FILE
$ARCHIVES_LOC
/
RA_CHECK_
$CURRENT_NR_UE_LOG_FILE
mv
$ARCHIVES_LOC
/
$CURRENT_NR_UE_LOG_FILE
$ARCHIVES_LOC
/
ra_check_
$CURRENT_NR_UE_LOG_FILE
check_ra_result
$ARCHIVES_LOC
/
RA_CHECK_
$CURRENT_GNB_LOG_FILE
$ARCHIVES_LOC
/RA_CHECK
_
$CURRENT_NR_UE_LOG_FILE
check_ra_result
$ARCHIVES_LOC
/
ra_check_
$CURRENT_GNB_LOG_FILE
$ARCHIVES_LOC
/ra_check
_
$CURRENT_NR_UE_LOG_FILE
#end RA test
#end RA test
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment