Commit 06bbea7f authored by Robert Schmidt's avatar Robert Schmidt

CI: Check for correct files

parent d02a65c8
...@@ -1021,12 +1021,9 @@ class RANManagement(): ...@@ -1021,12 +1021,9 @@ class RANManagement():
datalog_rt_stats = yaml.load(f,Loader=yaml.FullLoader) datalog_rt_stats = yaml.load(f,Loader=yaml.FullLoader)
rt_keys = datalog_rt_stats['Ref'] #we use the keys from the Ref field rt_keys = datalog_rt_stats['Ref'] #we use the keys from the Ref field
if (os.path.isfile('./nrL1_stats.log')) and (os.path.isfile('./nrL1_stats.log')): if os.path.isfile('./nrL1_stats.log') and os.path.isfile('./nrMAC_stats.log'):
stat_files_present=True # don't use CI-nrL1_stats.log, as this will increase the processing time for
else: # no reason, we just need the last occurence
stat_files_present=False
logging.debug("NR Stats files for RT analysis not found")
if stat_files_present:
nrL1_stats = open('./nrL1_stats.log', 'r') nrL1_stats = open('./nrL1_stats.log', 'r')
nrMAC_stats = open('./nrMAC_stats.log', 'r') nrMAC_stats = open('./nrMAC_stats.log', 'r')
for line in nrL1_stats.readlines(): for line in nrL1_stats.readlines():
...@@ -1047,6 +1044,8 @@ class RANManagement(): ...@@ -1047,6 +1044,8 @@ class RANManagement():
real_time_stats[k]=tmp.group(1) real_time_stats[k]=tmp.group(1)
nrL1_stats.close() nrL1_stats.close()
nrMAC_stats.close() nrMAC_stats.close()
else:
logging.debug("NR Stats files for RT analysis not found")
#stdout log file and stat log files analysis completed #stdout log file and stat log files analysis completed
logging.debug(' File analysis (stdout, stats) completed') logging.debug(' File analysis (stdout, stats) completed')
......
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