author | Matt Mackall <mpm@selenic.com> |
Thu, 06 Jun 2013 14:40:26 -0500 | |
changeset 19294 | 3c3f6b83f8cb |
parent 19293 | 446ab88d3f1c |
child 19297 | 8ddc3cd962ba |
--- a/tests/run-tests.py Thu May 30 18:47:16 2013 -0700 +++ b/tests/run-tests.py Thu Jun 06 14:40:26 2013 -0500 @@ -1125,8 +1125,9 @@ ignored = len(results['i']) print - for s in results['s']: - print "Skipped %s: %s" % s + if not options.noskips: + for s in results['s']: + print "Skipped %s: %s" % s for s in results['!']: print "Failed %s: %s" % s _checkhglib("Tested")