Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
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
alex037yang
OpenXG-RAN
Commits
9078a01e
Commit
9078a01e
authored
Jan 24, 2020
by
Raphael Defosseux
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CI: adding FDD-10MHz to RFSIM
Signed-off-by:
Raphael Defosseux
<
raphael.defosseux@eurecom.fr
>
parent
fd865ea0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
2 deletions
+12
-2
ci-scripts/reportTestLocally.sh
ci-scripts/reportTestLocally.sh
+1
-1
ci-scripts/runTestOnVM.sh
ci-scripts/runTestOnVM.sh
+11
-1
No files found.
ci-scripts/reportTestLocally.sh
View file @
9078a01e
...
...
@@ -435,7 +435,7 @@ function report_test {
EPC_CONFIGS
=(
"wS1 noS1"
)
TRANS_MODES
=(
"fdd"
)
BW_CASES
=(
05
)
BW_CASES
=(
05
10
)
for
CN_CONFIG
in
${
EPC_CONFIGS
[@]
}
do
for
TMODE
in
${
TRANS_MODES
[@]
}
...
...
ci-scripts/runTestOnVM.sh
View file @
9078a01e
...
...
@@ -1757,7 +1757,7 @@ function run_test_on_vm {
#BW_CASES=(05 10 20)
EPC_CONFIGS
=(
"wS1"
"noS1"
)
TRANS_MODES
=(
"fdd"
)
BW_CASES
=(
05
)
BW_CASES
=(
05
10
)
for
CN_CONFIG
in
${
EPC_CONFIGS
[@]
}
do
if
[[
$CN_CONFIG
=
~ .
*
wS1.
*
]]
...
...
@@ -1949,6 +1949,7 @@ function run_test_on_vm {
TMODE
=
"fdd"
FREQUENCY
=
2680
BW_CASES
=(
05
)
MBMS_STATUS
=
0
for
BW
in
${
BW_CASES
[@]
}
do
...
...
@@ -1997,6 +1998,8 @@ function run_test_on_vm {
terminate_enb_ue_basic_sim
$UE_VM_CMDS
$UE_VM_IP_ADDR
2
scp
-o
StrictHostKeyChecking
=
no ubuntu@
$ENB_VM_IP_ADDR
:/home/ubuntu/tmp/cmake_targets/log/
$CURRENT_ENB_LOG_FILE
$ARCHIVES_LOC
scp
-o
StrictHostKeyChecking
=
no ubuntu@
$UE_VM_IP_ADDR
:/home/ubuntu/tmp/cmake_targets/log/
$CURRENT_UE_LOG_FILE
$ARCHIVES_LOC
NB_UE_MBMS_MESSAGES
=
`
egrep
-c
"TRIED TO PUSH MBMS DATA TO"
$ARCHIVES_LOC
/
$CURRENT_UE_LOG_FILE
`
if
[
$NB_UE_MBMS_MESSAGES
-eq
0
]
;
then
MBMS_STATUS
=
-1
;
fi
done
...
...
@@ -2008,6 +2011,13 @@ function run_test_on_vm {
if
[
$PING_STATUS
-ne
0
]
;
then
STATUS
=
-1
;
fi
if
[
$IPERF_STATUS
-ne
0
]
;
then
STATUS
=
-1
;
fi
if
[
$MBMS_STATUS
-eq
0
]
then
echo
"LTE MBMS RFSIM seems OK"
else
echo
"LTE MBMS RFSIM seems to FAIL"
STATUS
=
-1
fi
if
[
$STATUS
-eq
0
]
then
echo
"LTE RFSIM seems OK"
...
...
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