From eb4138894fdc4e06d0f330a4c05aebdede1a1c34 Mon Sep 17 00:00:00 2001 From: "Peter D. Barnes, Jr." Date: Wed, 4 Feb 2015 12:34:24 -0800 Subject: [PATCH] test.py list formatting --- test.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test.py b/test.py index 9eb9b047f..6403ec581 100755 --- a/test.py +++ b/test.py @@ -1773,16 +1773,16 @@ def run_tests(): # if skipped_testnames: skipped_testnames.sort() - print 'List of SKIPped tests: %s' % '\n '.join(map(str, skipped_testnames)) + print 'List of SKIPped tests:\n %s' % '\n '.join(map(str, skipped_testnames)) if failed_testnames: failed_testnames.sort() - print 'List of FAILed tests: %s' % '\n '.join(map(str, failed_testnames)) + print 'List of FAILed tests:\n %s' % '\n '.join(map(str, failed_testnames)) if crashed_testnames: crashed_testnames.sort() - print 'List of CRASHed tests: %s' % '\n '.join(map(str, crashed_testnames)) + print 'List of CRASHed tests:\n %s' % '\n '.join(map(str, crashed_testnames)) if valgrind_testnames: valgrind_testnames.sort() - print 'List of VALGR failures: %s' % '\n '.join(map(str, valgrind_testnames)) + print 'List of VALGR failures:\n %s' % '\n '.join(map(str, valgrind_testnames)) # # The last things to do are to translate the XML results file to "human # readable form" if the user asked for it (or make an XML file somewhere)