Commit eff978af authored by Gabriele Perrone's avatar Gabriele Perrone

debugging

parent 2ea0070d
......@@ -750,8 +750,12 @@ class OaiCiTest():
SSH.command('stdbuf -o0 adb -s ' + device_id + ' shell "dumpsys telephony.registry" | grep -m 1 mDataConnectionState', '\$', 15)
else:
SSH.command('ssh ' + self.UEDevicesRemoteUser[idx] + '@' + self.UEDevicesRemoteServer[idx] + ' \'adb -s ' + device_id + ' shell "dumpsys telephony.registry"\' | grep -m 1 mDataConnectionState', '\$', 60)
print('#GP: in SSH.getBefore() K=0 (it was K=2 in main.py)')
result = re.search('mDataConnectionState.*=(?P<state>[0-9\-]+)', SSH.getBefore())
print("\n")
print(SSH.getBefore())
print("\n")
print(result)
print("\n")
if result is None:
logging.debug('\u001B[1;37;41m mDataConnectionState Not Found! \u001B[0m')
lock.acquire()
......@@ -761,6 +765,8 @@ class OaiCiTest():
lock.release()
break
mDataConnectionState = int(result.group('state'))
print(mDataConnectionState)
print("\n")
if mDataConnectionState == 2:
logging.debug('\u001B[1mUE (' + device_id + ') Attach Completed\u001B[0m')
lock.acquire()
......
......@@ -87,7 +87,7 @@ class SSHConnection():
if connect_status:
pass
else:
sys.exit('CiTestObj.Connection Failed')
sys.exit('SSH Connection Failed')
def command(self, commandline, expectedline, timeout):
......
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