Commit cb8408e7 authored by Robert Schmidt's avatar Robert Schmidt

AnalyzeLogFile_eNB: eNBlogFile will implicitly be in current directory

parent 375776d8
...@@ -775,9 +775,9 @@ class RANManagement(): ...@@ -775,9 +775,9 @@ class RANManagement():
return stats return stats
def AnalyzeLogFile_eNB(self, eNBlogFile, HTML, checkers={}): def AnalyzeLogFile_eNB(self, eNBlogFile, HTML, checkers={}):
if (not os.path.isfile('./' + eNBlogFile)): if (not os.path.isfile(eNBlogFile)):
return -1 return -1
enb_log_file = open('./' + eNBlogFile, 'r') enb_log_file = open(eNBlogFile, 'r')
exitSignalReceived = False exitSignalReceived = False
foundAssertion = False foundAssertion = False
msgAssertion = '' msgAssertion = ''
......
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