[PATCH] run-tests: ignoring tests works again

Simon Heimberg simohe at besonet.ch
Mon Jun 10 11:49:20 CDT 2013


# HG changeset patch
# User simon at laptop-tosh
# Date 1370788975 -7200
# Node ID a3645a98eda5ab9cfe5eba4a3ccda6745d5f3fef
# Parent  c38b726c2d54d6e03a5c40bee15146903522776c
run-tests: ignoring tests works again

running with --retest did not work anymore because runone still returned None
for this case. But this is not allowed since 6a127fa5de23.

diff -r c38b726c2d54 -r a3645a98eda5 tests/run-tests.py
--- a/tests/run-tests.py	Sam Jun 08 22:37:08 2013 +0200
+++ b/tests/run-tests.py	Son Jun 09 16:42:55 2013 +0200
@@ -907,8 +907,7 @@
             return skip("blacklisted")
 
         if options.retest and not os.path.exists(test + ".err"):
-            ignore("not retesting")
-            return None
+            return ignore("not retesting")
 
         if options.keywords:
             fp = open(test)
@@ -918,8 +917,7 @@
                 if k in t:
                     break
                 else:
-                    ignore("doesn't match keyword")
-                    return None
+                    return ignore("doesn't match keyword")
 
     for ext, func, out in testtypes:
         if lctest.startswith("test-") and lctest.endswith(ext):


More information about the Mercurial-devel mailing list