From cb8408e7ff29ef16e7bc73ded5025c7e931fe53b Mon Sep 17 00:00:00 2001 From: Robert Schmidt <robert.schmidt@openairinterface.org> Date: Fri, 18 Nov 2022 09:39:23 +0100 Subject: [PATCH] AnalyzeLogFile_eNB: eNBlogFile will implicitly be in current directory --- ci-scripts/ran.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci-scripts/ran.py b/ci-scripts/ran.py index 7aca545310f..c758e620b7b 100644 --- a/ci-scripts/ran.py +++ b/ci-scripts/ran.py @@ -775,9 +775,9 @@ class RANManagement(): return stats def AnalyzeLogFile_eNB(self, eNBlogFile, HTML, checkers={}): - if (not os.path.isfile('./' + eNBlogFile)): + if (not os.path.isfile(eNBlogFile)): return -1 - enb_log_file = open('./' + eNBlogFile, 'r') + enb_log_file = open(eNBlogFile, 'r') exitSignalReceived = False foundAssertion = False msgAssertion = '' -- GitLab