Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
sneltved
openairinterface5G
Commits
25b60e0c
Commit
25b60e0c
authored
Dec 13, 2018
by
Raphael Defosseux
Browse files
CI: missing detection of UE for TAB header
Signed-off-by:
Raphael Defosseux
<
raphael.defosseux@eurecom.fr
>
parent
70711c34
Changes
1
Hide whitespace changes
Inline
Side-by-side
ci-scripts/main.py
View file @
25b60e0c
...
...
@@ -110,7 +110,7 @@ class SSHConnection():
self
.
htmlFile
=
''
self
.
htmlHeaderCreated
=
False
self
.
htmlFooterCreated
=
False
self
.
htmlUEConnected
=
0
self
.
htmlUEConnected
=
-
1
self
.
htmleNBFailureMsg
=
''
self
.
picocom_closure
=
False
self
.
idle_sleep_time
=
0
...
...
@@ -2040,6 +2040,17 @@ class SSHConnection():
self
.
htmlFile
.
write
(
' <th>Test Desc</th>
\n
'
)
self
.
htmlFile
.
write
(
' <th>Test Options</th>
\n
'
)
self
.
htmlFile
.
write
(
' <th>Test Status</th>
\n
'
)
if
(
self
.
htmlUEConnected
==
-
1
):
terminate_ue_flag
=
True
if
(
self
.
ADBIPAddress
!=
'none'
):
self
.
GetAllUEDevices
(
terminate_ue_flag
)
self
.
GetAllCatMDevices
(
terminate_ue_flag
)
else
:
self
.
UEDevices
.
append
(
'doughq9rehg'
)
self
.
UEDevices
.
append
(
'dnsgiuahgia'
)
self
.
UEDevices
.
append
(
'uehgieng9'
)
self
.
htmlUEConnected
=
len
(
self
.
UEDevices
)
i
=
0
while
(
i
<
self
.
htmlUEConnected
):
self
.
htmlFile
.
write
(
' <th>UE'
+
str
(
i
)
+
' Status</th>
\n
'
)
...
...
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