From e82f44cb4938aac6e31aec480a2ce440f6218a43 Mon Sep 17 00:00:00 2001 From: Andre Puschmann Date: Sat, 10 Apr 2021 15:35:44 +0200 Subject: rfemu_srsenb_stdin: catch exception in rfemu and log error not handling the exception causes all following tests to fail. Change-Id: I496313ef8412c8cb18a3c2cb32c52a3b5a672853 --- src/osmo_gsm_tester/obj/rfemu_srsenb_stdin.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/osmo_gsm_tester/obj/rfemu_srsenb_stdin.py b/src/osmo_gsm_tester/obj/rfemu_srsenb_stdin.py index e4aec19..3f96b8b 100644 --- a/src/osmo_gsm_tester/obj/rfemu_srsenb_stdin.py +++ b/src/osmo_gsm_tester/obj/rfemu_srsenb_stdin.py @@ -44,7 +44,10 @@ class RFemulationSrsStdin(RFemulation): def set_attenuation(self, db): msg_str = 'cell_gain %d %f' % (self.cell_id, -db) self.dbg('sending stdin msg: "%s"' % msg_str) - self.enb.process.stdin_write(msg_str + '\n') + try: + self.enb.process.stdin_write(msg_str + '\n') + except Exception as e: + self.log(repr(e)) def get_max_attenuation(self): return 200 # maximum cell_gain value in srs. Is this correct value? -- cgit v1.2.3