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
848d7f0e
Commit
848d7f0e
authored
Jul 28, 2022
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Retx checkers for Deploy/UndeployObject
parent
5759a240
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
0 deletions
+10
-0
ci-scripts/main.py
ci-scripts/main.py
+6
-0
ci-scripts/xml_files/container_nsa_b200_quectel.xml
ci-scripts/xml_files/container_nsa_b200_quectel.xml
+2
-0
ci-scripts/xml_files/container_sa_b200_quectel.xml
ci-scripts/xml_files/container_sa_b200_quectel.xml
+2
-0
No files found.
ci-scripts/main.py
View file @
848d7f0e
...
...
@@ -409,6 +409,12 @@ def GetParametersFromXML(action):
string_field
=
test
.
findtext
(
'yaml_path'
)
if
(
string_field
is
not
None
):
CONTAINERS
.
yamlPath
[
CONTAINERS
.
eNB_instance
]
=
string_field
string_field
=
test
.
findtext
(
'd_retx_th'
)
if
(
string_field
is
not
None
):
CONTAINERS
.
ran_checkers
[
'd_retx_th'
]
=
[
float
(
x
)
for
x
in
string_field
.
split
(
','
)]
string_field
=
test
.
findtext
(
'u_retx_th'
)
if
(
string_field
is
not
None
):
CONTAINERS
.
ran_checkers
[
'u_retx_th'
]
=
[
float
(
x
)
for
x
in
string_field
.
split
(
','
)]
elif
action
==
'DeployGenObject'
or
action
==
'UndeployGenObject'
or
action
==
'StatsFromGenObject'
:
string_field
=
test
.
findtext
(
'yaml_path'
)
...
...
ci-scripts/xml_files/container_nsa_b200_quectel.xml
View file @
848d7f0e
...
...
@@ -180,6 +180,8 @@
<yaml_path>
ci-scripts/yaml_files/nsa_b200_gnb
</yaml_path>
<eNB_instance>
1
</eNB_instance>
<eNB_serverId>
1
</eNB_serverId>
<d_retx_th>
1,100,100,100
</d_retx_th>
<u_retx_th>
1,100,100,100
</u_retx_th>
</testCase>
</testCaseList>
...
...
ci-scripts/xml_files/container_sa_b200_quectel.xml
View file @
848d7f0e
...
...
@@ -162,6 +162,8 @@
<yaml_path>
ci-scripts/yaml_files/sa_b200_gnb
</yaml_path>
<eNB_instance>
0
</eNB_instance>
<eNB_serverId>
0
</eNB_serverId>
<d_retx_th>
1,100,100,100
</d_retx_th>
<u_retx_th>
1,100,100,100
</u_retx_th>
</testCase>
</testCaseList>
...
...
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