Show More
@@ -102,6 +102,8 b' def parseargs():' | |||||
102 | help="retest failed tests") |
|
102 | help="retest failed tests") | |
103 | parser.add_option("-s", "--cover_stdlib", action="store_true", |
|
103 | parser.add_option("-s", "--cover_stdlib", action="store_true", | |
104 | help="print a test coverage report inc. standard libraries") |
|
104 | help="print a test coverage report inc. standard libraries") | |
|
105 | parser.add_option("-S", "--noskips", action="store_true", | |||
|
106 | help="don't report skip tests verbosely") | |||
105 | parser.add_option("-t", "--timeout", type="int", |
|
107 | parser.add_option("-t", "--timeout", type="int", | |
106 | help="kill errant tests after TIMEOUT seconds" |
|
108 | help="kill errant tests after TIMEOUT seconds" | |
107 | " (default: $%s or %d)" % defaults['timeout']) |
|
109 | " (default: $%s or %d)" % defaults['timeout']) | |
@@ -640,6 +642,7 b' def runchildren(options, tests):' | |||||
640 | vlog('pid %d exited, status %d' % (pid, status)) |
|
642 | vlog('pid %d exited, status %d' % (pid, status)) | |
641 | failures |= status |
|
643 | failures |= status | |
642 |
|
644 | |||
|
645 | if not options.noskips: | |||
643 | for s in skips: |
|
646 | for s in skips: | |
644 | print "Skipped %s: %s" % (s[0], s[1]) |
|
647 | print "Skipped %s: %s" % (s[0], s[1]) | |
645 | for s in fails: |
|
648 | for s in fails: |
General Comments 0
You need to be logged in to leave comments.
Login now