Mercurial > public > mercurial-scm > hg-stable
diff tests/run-tests.py @ 19294:3c3f6b83f8cb
run-tests: make --noskips work
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Thu, 06 Jun 2013 14:40:26 -0500 |
parents | 8300adf9ca33 |
children | cdc612db2ffb |
line wrap: on
line diff
--- 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")