check_kernel.py 513 B

12345678910111213141516171819202122
  1. # kernel message checker module
  2. #
  3. # Copyright (c) 2013, Intel Corporation
  4. #
  5. # Author: Johannes Berg <johannes@sipsolutions.net>
  6. #
  7. # This software may be distributed under the terms of the BSD license.
  8. # See README for more details.
  9. #
  10. """
  11. Tests for kernel messages to find if there were any issues in them.
  12. """
  13. import re
  14. issue = re.compile('(\[[0-9 .]*\] )?(WARNING:|BUG:).*')
  15. def check_kernel(logfile):
  16. for line in open(logfile, 'r'):
  17. if issue.match(line):
  18. return False
  19. return True