[PATCH 1 of 3] run-tests: report skipped tests as "skipped" - they might still be "relevant"

Mads Kiilerich mads at kiilerich.com
Sun Aug 24 20:30:14 CDT 2014


# HG changeset patch
# User Mads Kiilerich <madski at unity3d.com>
# Date 1408929951 -7200
#      Mon Aug 25 03:25:51 2014 +0200
# Node ID 9b413ee4351566d11951598d237fc90d0fa514a4
# Parent  90cf454edd709c616d1e5ea4f30fb4d02f0c01a4
run-tests: report skipped tests as "skipped" - they might still be "relevant"

diff --git a/tests/run-tests.py b/tests/run-tests.py
--- a/tests/run-tests.py
+++ b/tests/run-tests.py
@@ -546,7 +546,7 @@ class Test(unittest.TestCase):
                 missing, failed = TTest.parsehghaveoutput(out)
 
             if not missing:
-                missing = ['irrelevant']
+                missing = ['skipped']
 
             if failed:
                 self.fail('hg have failed checking for %s' % failed[-1])


More information about the Mercurial-devel mailing list