test.py
changeset 11412 de77e85ea5d3
parent 11031 88aba7d03b9a
child 11634 99173c0ad09b
equal deleted inserted replaced
11411:09ccc3b39442 11412:de77e85ea5d3
  1771     #
  1771     #
  1772     # Repeat summary of skipped, failed, crashed, valgrind events 
  1772     # Repeat summary of skipped, failed, crashed, valgrind events 
  1773     #
  1773     #
  1774     if skipped_testnames:
  1774     if skipped_testnames:
  1775         skipped_testnames.sort()
  1775         skipped_testnames.sort()
  1776         print 'List of SKIPped tests: %s' % '\n    '.join(map(str, skipped_testnames))
  1776         print 'List of SKIPped tests:\n    %s' % '\n    '.join(map(str, skipped_testnames))
  1777     if failed_testnames:
  1777     if failed_testnames:
  1778         failed_testnames.sort()
  1778         failed_testnames.sort()
  1779         print 'List of FAILed tests: %s' % '\n    '.join(map(str, failed_testnames))
  1779         print 'List of FAILed tests:\n    %s' % '\n    '.join(map(str, failed_testnames))
  1780     if crashed_testnames:
  1780     if crashed_testnames:
  1781         crashed_testnames.sort()
  1781         crashed_testnames.sort()
  1782         print 'List of CRASHed tests: %s' % '\n    '.join(map(str, crashed_testnames))
  1782         print 'List of CRASHed tests:\n    %s' % '\n    '.join(map(str, crashed_testnames))
  1783     if valgrind_testnames:
  1783     if valgrind_testnames:
  1784         valgrind_testnames.sort()
  1784         valgrind_testnames.sort()
  1785         print 'List of VALGR failures: %s' % '\n    '.join(map(str, valgrind_testnames))
  1785         print 'List of VALGR failures:\n    %s' % '\n    '.join(map(str, valgrind_testnames))
  1786     #
  1786     #
  1787     # The last things to do are to translate the XML results file to "human
  1787     # The last things to do are to translate the XML results file to "human
  1788     # readable form" if the user asked for it (or make an XML file somewhere)
  1788     # readable form" if the user asked for it (or make an XML file somewhere)
  1789     #
  1789     #
  1790     if len(options.html):
  1790     if len(options.html):