changeset 19294:3c3f6b83f8cb

run-tests: make --noskips work
author Matt Mackall <mpm@selenic.com>
date Thu, 06 Jun 2013 14:40:26 -0500
parents 446ab88d3f1c
children 8ddc3cd962ba
files tests/run-tests.py
diffstat 1 files changed, 3 insertions(+), 2 deletions(-) [+]
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")