Commit 4bfcef6e authored by Raphael Defosseux's avatar Raphael Defosseux

CI: fixing the infinite loop w/ UE crashes before "got sync" message

Signed-off-by: default avatarRaphael Defosseux <raphael.defosseux@eurecom.fr>
parent f59f8032
...@@ -1104,6 +1104,9 @@ class SSHConnection(): ...@@ -1104,6 +1104,9 @@ class SSHConnection():
if result is not None: if result is not None:
self.command('echo ' + self.UEPassword + ' | sudo -S killall --signal=SIGINT -r *-uesoftmodem', '\$', 4) self.command('echo ' + self.UEPassword + ' | sudo -S killall --signal=SIGINT -r *-uesoftmodem', '\$', 4)
time.sleep(3) time.sleep(3)
outterLoopCounter = outterLoopCounter - 1
if (outterLoopCounter == 0):
doOutterLoop = False
continue continue
if self.air_interface == 'nr': if self.air_interface == 'nr':
fullSyncStatus = True fullSyncStatus = True
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment