lf-help_check.bash, test_l3_longevity.py, lf_check.py updated errors to

string ERROR:

Signed-off-by: Chuck SmileyRekiere <chuck.smileyrekiere@candelatech.com>
This commit is contained in:
Chuck SmileyRekiere
2021-12-20 07:44:56 -07:00
committed by shivam
parent a4a1b49de0
commit 19a2ac2fa7
3 changed files with 6 additions and 3 deletions

View File

@@ -1071,7 +1071,10 @@ QA Report Dashboard: lf_qa.py was not run as last script of test suite"""
background = self.background_green
# leave the space in after error to not pick up tx
# errors or rx errors
elif 'ERROR FAILED ' in text:
elif 'ERROR: ' in text:
self.test_result = "Some Tests Failed"
background = self.background_orange
elif 'ERROR: FAILED ' in text:
self.test_result = "Some Tests Failed"
background = self.background_orange
elif 'error ' in text.lower():