tests: Catch RTNL assertions in the kernel check

Catch RTNL assertions made by ASSERT_RTNL() in the kernel message
checks.

Signed-off-by: Johannes Berg <johannes.berg@intel.com>
This commit is contained in:
Johannes Berg 2015-07-17 15:19:02 +02:00 committed by Jouni Malinen
parent f9dd43eac2
commit c5e44b5917

View file

@ -22,7 +22,7 @@ lockdep_messages = [
'suspicious RCU usage',
]
lockdep = r'(\[\s*)?INFO: (%s)' % ('|'.join(lockdep_messages), )
issue = re.compile('(\[[0-9 .]*\] )?(WARNING:|BUG:|%s).*' % lockdep)
issue = re.compile('(\[[0-9 .]*\] )?(WARNING:|BUG:|%s|RTNL: assertion failed).*' % lockdep)
def check_kernel(logfile):
for line in open(logfile, 'r'):