This is merely a historical archive of years 2008-2021, before the migration to mailman3.
A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.
Holger Freyther gerrit-no-reply at lists.osmocom.org
Review at https://gerrit.osmocom.org/1812
vty: Close the vty sockets at the end of each test
In the OpenBSC VTY tests it seems no one is calling
the command with close=True. So make sure the socket
is released. Modify _close_socket to be idempotent.
Change-Id: I717537772e89113ef352d32ffba1b7a840f2c6e6
---
M osmopy/obscvty.py
M osmopy/osmotestvty.py
2 files changed, 4 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/python/osmo-python-tests refs/changes/12/1812/1
diff --git a/osmopy/obscvty.py b/osmopy/obscvty.py
index 2654f3d..3c9edb1 100755
--- a/osmopy/obscvty.py
+++ b/osmopy/obscvty.py
@@ -43,8 +43,9 @@
self.last_node = ''
def _close_socket(self):
- self.socket.close()
- self.socket = None
+ if self.socket:
+ self.socket.close()
+ self.socket = None
def _is_end(self, text, ends):
"""
diff --git a/osmopy/osmotestvty.py b/osmopy/osmotestvty.py
index 8d9f3c4..9f8dd0a 100644
--- a/osmopy/osmotestvty.py
+++ b/osmopy/osmotestvty.py
@@ -48,6 +48,7 @@
self.vty = obscvty.VTYInteract(appstring, "127.0.0.1", appport)
def tearDown(self):
+ self.vty._close_socket()
self.vty = None
osmoutil.end_proc(self.proc)
--
To view, visit https://gerrit.osmocom.org/1812
To unsubscribe, visit https://gerrit.osmocom.org/settings
Gerrit-MessageType: newchange
Gerrit-Change-Id: I717537772e89113ef352d32ffba1b7a840f2c6e6
Gerrit-PatchSet: 1
Gerrit-Project: python/osmo-python-tests
Gerrit-Branch: master
Gerrit-Owner: Holger Freyther <holger at freyther.de>