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
Michael Black
OpenXG-RAN
Commits
7857522d
Commit
7857522d
authored
3 years ago
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/ci_improve_reporting_xnb' into integration_2022_wk09
parents
d6dc2794
1fc6d12a
Branches unavailable
2023.w22
2023.w21
2023.w20
2023.w19
2023.w18
2023.w18b
2023.w16
2023.w15
2023.w14
2023.w13
2023.w12
2023.w11
2023.w11b
2023.w10
2023.w10b
2023.w09
2023.w08
2023.w08b
2023.w07
2023.w06
2023.w05
2023.w03
2023.w02
2022.42
2022.41
2022.w51
2022.w50
2022.w49
2022.w48
2022.w47
2022.w46
2022.w45
2022.w43
2022.w42
2022.w42b
2022.w41
2022.w40
2022.w39
2022.w38
2022.w37
2022.w37b
2022.w36
2022.w35
2022.w33
2022.w32
2022.w31
2022.w31b
2022.w30
2022.w29
2022.w26
2022.w25
2022.w24
2022.w24b
2022.w23
2022.w22
2022.w21
2022.w20
2022.w19
2022.w18
2022.w17
2022.w15
2022.w15b
2022.w14a
2022.w13
2022.w13b
2022.w13a
2022.w12
2022.w10
2022.w09
2022.w09b
setparam
flexran-eol
No related merge requests found
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
101 additions
and
19 deletions
+101
-19
ci-scripts/cls_containerize.py
ci-scripts/cls_containerize.py
+6
-2
ci-scripts/constants.py
ci-scripts/constants.py
+1
-0
ci-scripts/main.py
ci-scripts/main.py
+6
-0
ci-scripts/ran.py
ci-scripts/ran.py
+82
-17
ci-scripts/xml_files/container_5g_f1_rfsim.xml
ci-scripts/xml_files/container_5g_f1_rfsim.xml
+2
-0
ci-scripts/xml_files/container_5g_fdd_rfsim.xml
ci-scripts/xml_files/container_5g_fdd_rfsim.xml
+2
-0
ci-scripts/xml_files/container_5g_rfsim.xml
ci-scripts/xml_files/container_5g_rfsim.xml
+2
-0
No files found.
ci-scripts/cls_containerize.py
View file @
7857522d
...
@@ -106,6 +106,9 @@ class Containerize():
...
@@ -106,6 +106,9 @@ class Containerize():
self
.
registrySvrId
=
''
self
.
registrySvrId
=
''
self
.
testSvrId
=
''
self
.
testSvrId
=
''
#checkers from xml
self
.
ran_checkers
=
{}
#-----------------------------------------------------------
#-----------------------------------------------------------
# Container management functions
# Container management functions
#-----------------------------------------------------------
#-----------------------------------------------------------
...
@@ -624,7 +627,7 @@ class Containerize():
...
@@ -624,7 +627,7 @@ class Containerize():
else
:
else
:
if
containerToKill
:
if
containerToKill
:
logging
.
debug
(
'
\u001B
[1m Analyzing '
+
nodeB_prefix
+
'NB logfile
\u001B
[0m '
+
self
.
eNB_logFile
[
self
.
eNB_instance
])
logging
.
debug
(
'
\u001B
[1m Analyzing '
+
nodeB_prefix
+
'NB logfile
\u001B
[0m '
+
self
.
eNB_logFile
[
self
.
eNB_instance
])
logStatus
=
RAN
.
AnalyzeLogFile_eNB
(
self
.
eNB_logFile
[
self
.
eNB_instance
],
HTML
)
logStatus
=
RAN
.
AnalyzeLogFile_eNB
(
self
.
eNB_logFile
[
self
.
eNB_instance
],
HTML
,
self
.
ran_checkers
)
else
:
else
:
logStatus
=
0
logStatus
=
0
if
(
logStatus
<
0
):
if
(
logStatus
<
0
):
...
@@ -788,9 +791,10 @@ class Containerize():
...
@@ -788,9 +791,10 @@ class Containerize():
continue
continue
logging
.
debug
(
'
\u001B
[1m Analyzing xNB logfile '
+
filename
+
'
\u001B
[0m'
)
logging
.
debug
(
'
\u001B
[1m Analyzing xNB logfile '
+
filename
+
'
\u001B
[0m'
)
logStatus
=
RAN
.
AnalyzeLogFile_eNB
(
filename
,
HTML
)
logStatus
=
RAN
.
AnalyzeLogFile_eNB
(
filename
,
HTML
,
self
.
ran_checkers
)
if
(
logStatus
<
0
):
if
(
logStatus
<
0
):
fullStatus
=
False
fullStatus
=
False
self
.
exitStatus
=
1
HTML
.
CreateHtmlTestRow
(
RAN
.
runtime_stats
,
'KO'
,
logStatus
)
HTML
.
CreateHtmlTestRow
(
RAN
.
runtime_stats
,
'KO'
,
logStatus
)
else
:
else
:
HTML
.
CreateHtmlTestRow
(
RAN
.
runtime_stats
,
'OK'
,
CONST
.
ALL_PROCESSES_OK
)
HTML
.
CreateHtmlTestRow
(
RAN
.
runtime_stats
,
'OK'
,
CONST
.
ALL_PROCESSES_OK
)
...
...
This diff is collapsed.
Click to expand it.
ci-scripts/constants.py
View file @
7857522d
...
@@ -45,6 +45,7 @@ ENB_PROCESS_REALTIME_ISSUE = -13
...
@@ -45,6 +45,7 @@ ENB_PROCESS_REALTIME_ISSUE = -13
ENB_PROCESS_NOLOGFILE_TO_ANALYZE
=
-
14
ENB_PROCESS_NOLOGFILE_TO_ANALYZE
=
-
14
ENB_PROCESS_SLAVE_RRU_NOT_SYNCED
=
-
15
ENB_PROCESS_SLAVE_RRU_NOT_SYNCED
=
-
15
ENB_REAL_TIME_PROCESSING_ISSUE
=
-
16
ENB_REAL_TIME_PROCESSING_ISSUE
=
-
16
ENB_RETX_ISSUE
=
-
17
HSS_PROCESS_FAILED
=
-
2
HSS_PROCESS_FAILED
=
-
2
HSS_PROCESS_OK
=
+
2
HSS_PROCESS_OK
=
+
2
MME_PROCESS_FAILED
=
-
3
MME_PROCESS_FAILED
=
-
3
...
...
This diff is collapsed.
Click to expand it.
ci-scripts/main.py
View file @
7857522d
...
@@ -401,6 +401,12 @@ def GetParametersFromXML(action):
...
@@ -401,6 +401,12 @@ def GetParametersFromXML(action):
string_field
=
test
.
findtext
(
'nb_healthy'
)
string_field
=
test
.
findtext
(
'nb_healthy'
)
if
(
string_field
is
not
None
):
if
(
string_field
is
not
None
):
CONTAINERS
.
nb_healthy
[
0
]
=
int
(
string_field
)
CONTAINERS
.
nb_healthy
[
0
]
=
int
(
string_field
)
string_field
=
test
.
findtext
(
'd_retx_th'
)
if
(
string_field
is
not
None
):
CONTAINERS
.
ran_checkers
[
'd_retx_th'
]
=
string_field
string_field
=
test
.
findtext
(
'u_retx_th'
)
if
(
string_field
is
not
None
):
CONTAINERS
.
ran_checkers
[
'u_retx_th'
]
=
string_field
elif
action
==
'PingFromContainer'
:
elif
action
==
'PingFromContainer'
:
string_field
=
test
.
findtext
(
'container_name'
)
string_field
=
test
.
findtext
(
'container_name'
)
...
...
This diff is collapsed.
Click to expand it.
ci-scripts/ran.py
View file @
7857522d
...
@@ -39,6 +39,7 @@ import time
...
@@ -39,6 +39,7 @@ import time
from
multiprocessing
import
Process
,
Lock
,
SimpleQueue
from
multiprocessing
import
Process
,
Lock
,
SimpleQueue
import
yaml
import
yaml
#-----------------------------------------------------------
#-----------------------------------------------------------
# OAI Testing modules
# OAI Testing modules
#-----------------------------------------------------------
#-----------------------------------------------------------
...
@@ -758,7 +759,7 @@ class RANManagement():
...
@@ -758,7 +759,7 @@ class RANManagement():
mySSH
.
command
(
'echo '
+
self
.
eNBPassword
+
' | sudo -S rm enb*.log core* enb_*record.raw enb_*.pcap gnb_*.pcap enb_*txt physim_*.log *stats.log *monitor.pickle *monitor*.png ping*.log.png log/*/*.log log/*/*.pcap'
,
'\$'
,
15
)
mySSH
.
command
(
'echo '
+
self
.
eNBPassword
+
' | sudo -S rm enb*.log core* enb_*record.raw enb_*.pcap gnb_*.pcap enb_*txt physim_*.log *stats.log *monitor.pickle *monitor*.png ping*.log.png log/*/*.log log/*/*.pcap'
,
'\$'
,
15
)
mySSH
.
close
()
mySSH
.
close
()
def
AnalyzeLogFile_eNB
(
self
,
eNBlogFile
,
HTML
):
def
AnalyzeLogFile_eNB
(
self
,
eNBlogFile
,
HTML
,
checkers
=
{}
):
if
(
not
os
.
path
.
isfile
(
'./'
+
eNBlogFile
)):
if
(
not
os
.
path
.
isfile
(
'./'
+
eNBlogFile
)):
return
-
1
return
-
1
enb_log_file
=
open
(
'./'
+
eNBlogFile
,
'r'
)
enb_log_file
=
open
(
'./'
+
eNBlogFile
,
'r'
)
...
@@ -815,10 +816,12 @@ class RANManagement():
...
@@ -815,10 +816,12 @@ class RANManagement():
removing_ue
=
0
removing_ue
=
0
#count"X2AP-PDU"
#count"X2AP-PDU"
x2ap_pdu
=
0
x2ap_pdu
=
0
#
NSA
specific log markers
#
gnb
specific log markers
nsa_markers
=
{
'SgNBReleaseRequestAcknowledge'
:
[],
'FAILURE'
:
[],
'scgFailureInformationNR-r15'
:
[],
'SgNBReleaseRequest'
:
[]}
gnb_markers
=
{
'SgNBReleaseRequestAcknowledge'
:
[],
'FAILURE'
:
[],
'scgFailureInformationNR-r15'
:
[],
'SgNBReleaseRequest'
:
[],
'Detected UL Failure on PUSCH'
:
[]}
nodeB_prefix_found
=
False
nodeB_prefix_found
=
False
RealTimeProcessingIssue
=
False
RealTimeProcessingIssue
=
False
DLRetxIssue
=
False
ULRetxIssue
=
False
line_cnt
=
0
#log file line counter
line_cnt
=
0
#log file line counter
for
line
in
enb_log_file
.
readlines
():
for
line
in
enb_log_file
.
readlines
():
...
@@ -1008,11 +1011,11 @@ class RANManagement():
...
@@ -1008,11 +1011,11 @@ class RANManagement():
result
=
re
.
search
(
'X2AP-PDU'
,
str
(
line
))
result
=
re
.
search
(
'X2AP-PDU'
,
str
(
line
))
if
result
is
not
None
:
if
result
is
not
None
:
x2ap_pdu
+=
1
x2ap_pdu
+=
1
#
nsa
markers logging
#
gnb
markers logging
for
k
in
nsa
_markers
:
for
k
in
gnb
_markers
:
result
=
re
.
search
(
k
,
line
)
result
=
re
.
search
(
k
,
line
)
if
result
is
not
None
:
if
result
is
not
None
:
nsa_markers
[
k
].
append
(
line_cnt
)
gnb_markers
[
k
].
append
(
line_cnt
)
enb_log_file
.
close
()
enb_log_file
.
close
()
...
@@ -1096,31 +1099,77 @@ class RANManagement():
...
@@ -1096,31 +1099,77 @@ class RANManagement():
htmlMsg
=
statMsg
+
'
\n
'
htmlMsg
=
statMsg
+
'
\n
'
logging
.
debug
(
statMsg
)
logging
.
debug
(
statMsg
)
htmleNBFailureMsg
+=
htmlMsg
htmleNBFailureMsg
+=
htmlMsg
#
nsa
markers
#
gnb
markers
statMsg
=
'logfile line count = '
+
str
(
line_cnt
)
statMsg
=
'logfile line count = '
+
str
(
line_cnt
)
htmlMsg
=
statMsg
+
'
\n
'
htmlMsg
=
statMsg
+
'
\n
'
logging
.
debug
(
statMsg
)
logging
.
debug
(
statMsg
)
htmleNBFailureMsg
+=
htmlMsg
htmleNBFailureMsg
+=
htmlMsg
if
len
(
nsa
_markers
[
'SgNBReleaseRequestAcknowledge'
])
!=
0
:
if
len
(
gnb
_markers
[
'SgNBReleaseRequestAcknowledge'
])
!=
0
:
statMsg
=
'SgNBReleaseRequestAcknowledge = '
+
str
(
len
(
nsa_markers
[
'SgNBReleaseRequestAcknowledge'
]))
+
' occurences , starting line '
+
str
(
nsa
_markers
[
'SgNBReleaseRequestAcknowledge'
][
0
])
statMsg
=
'SgNBReleaseRequestAcknowledge = '
+
str
(
len
(
gnb_markers
[
'SgNBReleaseRequestAcknowledge'
]))
+
' occurences , starting line '
+
str
(
gnb
_markers
[
'SgNBReleaseRequestAcknowledge'
][
0
])
else
:
else
:
statMsg
=
'SgNBReleaseRequestAcknowledge = '
+
str
(
len
(
nsa
_markers
[
'SgNBReleaseRequestAcknowledge'
]))
+
' occurences'
statMsg
=
'SgNBReleaseRequestAcknowledge = '
+
str
(
len
(
gnb
_markers
[
'SgNBReleaseRequestAcknowledge'
]))
+
' occurences'
htmlMsg
=
statMsg
+
'
\n
'
htmlMsg
=
statMsg
+
'
\n
'
logging
.
debug
(
statMsg
)
logging
.
debug
(
statMsg
)
htmleNBFailureMsg
+=
htmlMsg
htmleNBFailureMsg
+=
htmlMsg
statMsg
=
'FAILURE = '
+
str
(
len
(
nsa_markers
[
'FAILURE'
]))
+
' occurences'
statMsg
=
'FAILURE = '
+
str
(
len
(
gnb_markers
[
'FAILURE'
]))
+
' occurences'
htmlMsg
=
statMsg
+
'
\n
'
logging
.
debug
(
statMsg
)
htmleNBFailureMsg
+=
htmlMsg
statMsg
=
'Detected UL Failure on PUSCH = '
+
str
(
len
(
gnb_markers
[
'Detected UL Failure on PUSCH'
]))
+
' occurences'
htmlMsg
=
statMsg
+
'
\n
'
htmlMsg
=
statMsg
+
'
\n
'
logging
.
debug
(
statMsg
)
logging
.
debug
(
statMsg
)
htmleNBFailureMsg
+=
htmlMsg
htmleNBFailureMsg
+=
htmlMsg
#ulsch and dlsch statistics
#ulsch and dlsch statistics and checkers
#print statistics into html
if
len
(
dlsch_ulsch_stats
)
!=
0
:
#check if dictionary is not empty
if
len
(
dlsch_ulsch_stats
)
!=
0
:
#check if dictionary is not empty
#for each dictionary key, generate the msg for html as information
statMsg
=
''
statMsg
=
''
for
key
in
dlsch_ulsch_stats
:
#for each dictionary key
for
key
in
dlsch_ulsch_stats
:
statMsg
+=
dlsch_ulsch_stats
[
key
]
+
'
\n
'
statMsg
+=
dlsch_ulsch_stats
[
key
]
+
'
\n
'
logging
.
debug
(
dlsch_ulsch_stats
[
key
])
logging
.
debug
(
dlsch_ulsch_stats
[
key
])
htmleNBFailureMsg
+=
statMsg
htmleNBFailureMsg
+=
statMsg
#checker
if
(
len
(
dlsch_ulsch_stats
)
!=
0
)
and
(
len
(
checkers
)
!=
0
):
if
'd_retx_th'
in
checkers
:
checkers
[
'd_retx_th'
]
=
[
float
(
x
)
for
x
in
checkers
[
'd_retx_th'
].
split
(
','
)]
dlsch_checker_status
=
list
(
0
for
i
in
checkers
[
'd_retx_th'
])
#status 0 / -1
d_perc_retx
=
list
(
0
for
i
in
checkers
[
'd_retx_th'
])
#results in %
if
'u_retx_th'
in
checkers
:
checkers
[
'u_retx_th'
]
=
[
float
(
x
)
for
x
in
checkers
[
'u_retx_th'
].
split
(
','
)]
ulsch_checker_status
=
list
(
0
for
i
in
checkers
[
'u_retx_th'
])
u_perc_retx
=
list
(
0
for
i
in
checkers
[
'u_retx_th'
])
#ul and dl retransmissions checkers
#NOTICE: DL and UL regex are different
if
(
'dlsch_rounds'
in
dlsch_ulsch_stats
)
and
(
'd_retx_th'
in
checkers
):
tmp
=
re
.
match
(
r'^.*dlsch_rounds\s+(\d+)\/(\d+)\/(\d+)\/(\d+),\s+dlsch_errors\s+(\d+)'
,
dlsch_ulsch_stats
[
'dlsch_rounds'
])
if
tmp
is
not
None
:
#captures the different groups from the regex
retx_data
=
[
float
(
x
)
for
x
in
tmp
.
groups
()]
for
i
in
range
(
0
,
len
(
d_perc_retx
)):
#case where numerator > denumerator with denum ==0 is disregarded, cannot hapen in principle, will lead to 0%
d_perc_retx
[
i
]
=
0
if
(
retx_data
[
i
]
==
0
)
else
100
*
retx_data
[
i
+
1
]
/
retx_data
[
i
]
#treating % > 100 , % > requirement
if
(
d_perc_retx
[
i
]
>
100
)
or
(
d_perc_retx
[
i
]
>
checkers
[
'd_retx_th'
][
i
]):
dlsch_checker_status
[
i
]
=
-
1
if
-
1
in
dlsch_checker_status
:
DLRetxIssue
=
True
if
(
'ulsch_rounds'
in
dlsch_ulsch_stats
)
and
(
'u_retx_th'
in
checkers
):
tmp
=
re
.
match
(
r'^.*ulsch_rounds\s+(\d+)\/(\d+)\/(\d+)\/(\d+),\s+.*,\s+ulsch_errors\s+(\d+)'
,
dlsch_ulsch_stats
[
'ulsch_rounds'
])
if
tmp
is
not
None
:
retx_data
=
[
float
(
x
)
for
x
in
tmp
.
groups
()]
for
i
in
range
(
0
,
len
(
d_perc_retx
)):
u_perc_retx
[
i
]
=
0
if
(
retx_data
[
i
]
==
0
)
else
100
*
retx_data
[
i
+
1
]
/
retx_data
[
i
]
if
(
u_perc_retx
[
i
]
>
100
)
or
(
u_perc_retx
[
i
]
>
checkers
[
'u_retx_th'
][
i
]):
ulsch_checker_status
[
i
]
=
-
1
if
-
1
in
ulsch_checker_status
:
ULRetxIssue
=
True
#real time statistics
#real time statistics
datalog_rt_stats
[
'Data'
]
=
{}
datalog_rt_stats
[
'Data'
]
=
{}
if
len
(
real_time_stats
)
!=
0
:
#check if dictionary is not empty
if
len
(
real_time_stats
)
!=
0
:
#check if dictionary is not empty
...
@@ -1158,18 +1207,34 @@ class RANManagement():
...
@@ -1158,18 +1207,34 @@ class RANManagement():
htmlMsg
=
statMsg
+
'
\n
'
htmlMsg
=
statMsg
+
'
\n
'
logging
.
debug
(
statMsg
)
logging
.
debug
(
statMsg
)
htmleNBFailureMsg
+=
htmlMsg
htmleNBFailureMsg
+=
htmlMsg
if
len
(
nsa
_markers
[
'SgNBReleaseRequest'
])
!=
0
:
if
len
(
gnb
_markers
[
'SgNBReleaseRequest'
])
!=
0
:
statMsg
=
'SgNBReleaseRequest = '
+
str
(
len
(
nsa_markers
[
'SgNBReleaseRequest'
]))
+
' occurences , starting line '
+
str
(
nsa
_markers
[
'SgNBReleaseRequest'
][
0
])
statMsg
=
'SgNBReleaseRequest = '
+
str
(
len
(
gnb_markers
[
'SgNBReleaseRequest'
]))
+
' occurences , starting line '
+
str
(
gnb
_markers
[
'SgNBReleaseRequest'
][
0
])
else
:
else
:
statMsg
=
'SgNBReleaseRequest = '
+
str
(
len
(
nsa
_markers
[
'SgNBReleaseRequest'
]))
+
' occurences'
statMsg
=
'SgNBReleaseRequest = '
+
str
(
len
(
gnb
_markers
[
'SgNBReleaseRequest'
]))
+
' occurences'
htmlMsg
=
statMsg
+
'
\n
'
htmlMsg
=
statMsg
+
'
\n
'
logging
.
debug
(
statMsg
)
logging
.
debug
(
statMsg
)
htmleNBFailureMsg
+=
htmlMsg
htmleNBFailureMsg
+=
htmlMsg
statMsg
=
'scgFailureInformationNR-r15 = '
+
str
(
len
(
nsa
_markers
[
'scgFailureInformationNR-r15'
]))
+
' occurences'
statMsg
=
'scgFailureInformationNR-r15 = '
+
str
(
len
(
gnb
_markers
[
'scgFailureInformationNR-r15'
]))
+
' occurences'
htmlMsg
=
statMsg
+
'
\n
'
htmlMsg
=
statMsg
+
'
\n
'
logging
.
debug
(
statMsg
)
logging
.
debug
(
statMsg
)
htmleNBFailureMsg
+=
htmlMsg
htmleNBFailureMsg
+=
htmlMsg
if
DLRetxIssue
:
retx_checker_status_str
=
''
for
status
in
dlsch_checker_status
:
retx_checker_status_str
+=
str
(
status
)
+
' '
logging
.
debug
(
'
\u001B
[1;37;41m '
+
nodeB_prefix
+
'NB ended with too many retransmissions / errors issue in DL !
\u001B
[0m'
)
logging
.
debug
(
'
\u001B
[1;37;41m Status : '
+
retx_checker_status_str
+
'
\u001B
[0m'
)
htmleNBFailureMsg
+=
'Fail due to retransmissions / errors issue in DL, status : '
+
retx_checker_status_str
+
'
\n
'
global_status
=
CONST
.
ENB_RETX_ISSUE
if
ULRetxIssue
:
retx_checker_status_str
=
''
for
status
in
ulsch_checker_status
:
retx_checker_status_str
+=
str
(
status
)
+
' '
logging
.
debug
(
'
\u001B
[1;37;41m '
+
nodeB_prefix
+
'NB ended with too many retransmissions / errors issue in UL !
\u001B
[0m'
)
logging
.
debug
(
'
\u001B
[1;37;41m Status : '
+
retx_checker_status_str
+
'
\u001B
[0m'
)
htmleNBFailureMsg
+=
'Fail due to retransmissions / errors issue in UL, status : '
+
retx_checker_status_str
+
'
\n
'
global_status
=
CONST
.
ENB_RETX_ISSUE
if
RealTimeProcessingIssue
:
if
RealTimeProcessingIssue
:
logging
.
debug
(
'
\u001B
[1;37;41m '
+
nodeB_prefix
+
'NB ended with real time processing issue!
\u001B
[0m'
)
logging
.
debug
(
'
\u001B
[1;37;41m '
+
nodeB_prefix
+
'NB ended with real time processing issue!
\u001B
[0m'
)
htmleNBFailureMsg
+=
'Fail due to real time processing issue
\n
'
htmleNBFailureMsg
+=
'Fail due to real time processing issue
\n
'
...
...
This diff is collapsed.
Click to expand it.
ci-scripts/xml_files/container_5g_f1_rfsim.xml
View file @
7857522d
...
@@ -116,6 +116,8 @@
...
@@ -116,6 +116,8 @@
<class>
UndeployGenObject
</class>
<class>
UndeployGenObject
</class>
<desc>
Undeploy all OAI 5G stack
</desc>
<desc>
Undeploy all OAI 5G stack
</desc>
<yaml_path>
yaml_files/5g_f1_rfsimulator
</yaml_path>
<yaml_path>
yaml_files/5g_f1_rfsimulator
</yaml_path>
<d_retx_th>
5,0,0,0
</d_retx_th>
<u_retx_th>
5,0,0,0
</u_retx_th>
</testCase>
</testCase>
</testCaseList>
</testCaseList>
This diff is collapsed.
Click to expand it.
ci-scripts/xml_files/container_5g_fdd_rfsim.xml
View file @
7857522d
...
@@ -111,6 +111,8 @@
...
@@ -111,6 +111,8 @@
<class>
UndeployGenObject
</class>
<class>
UndeployGenObject
</class>
<desc>
Undeploy all OAI 5G stack
</desc>
<desc>
Undeploy all OAI 5G stack
</desc>
<yaml_path>
yaml_files/5g_fdd_rfsimulator
</yaml_path>
<yaml_path>
yaml_files/5g_fdd_rfsimulator
</yaml_path>
<d_retx_th>
5,0,0,0
</d_retx_th>
<u_retx_th>
5,0,0,0
</u_retx_th>
</testCase>
</testCase>
</testCaseList>
</testCaseList>
This diff is collapsed.
Click to expand it.
ci-scripts/xml_files/container_5g_rfsim.xml
View file @
7857522d
...
@@ -109,6 +109,8 @@
...
@@ -109,6 +109,8 @@
<class>
UndeployGenObject
</class>
<class>
UndeployGenObject
</class>
<desc>
Undeploy all OAI 5G stack
</desc>
<desc>
Undeploy all OAI 5G stack
</desc>
<yaml_path>
yaml_files/5g_rfsimulator
</yaml_path>
<yaml_path>
yaml_files/5g_rfsimulator
</yaml_path>
<d_retx_th>
5,0,0,0
</d_retx_th>
<u_retx_th>
5,0,0,0
</u_retx_th>
</testCase>
</testCase>
</testCaseList>
</testCaseList>
This diff is collapsed.
Click to expand it.
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