add injected fault check
This commit is contained in:
parent
31c12b3d5b
commit
8f3e8ecf10
|
@ -117,7 +117,7 @@ class LogParser:
|
|||
continue
|
||||
if 'Type' not in obj:
|
||||
continue
|
||||
if obj['Severity'] == '40':
|
||||
if obj['Severity'] == '40' and obj.get('ErrorIsInjectedFault', None) != '1':
|
||||
self.fail()
|
||||
if self.name is not None:
|
||||
obj['testname'] = self.name
|
||||
|
|
Loading…
Reference in New Issue