Mercurial > public > mercurial-scm > hg
diff tests/run-tests.py @ 51696:7f0cb9ee0534
Backout accidental publication of a large range of revisions
I accidentally published 25e7f9dcad0f::bd1483fd7088, this is the inverse.
author | Rapha?l Gom?s <rgomes@octobus.net> |
---|---|
date | Tue, 23 Jul 2024 10:02:46 +0200 |
parents | 493034cc3265 |
children | ca7bde5dbafb |
line wrap: on
line diff
--- a/tests/run-tests.py Mon Jul 22 16:49:38 2024 +0200 +++ b/tests/run-tests.py Tue Jul 23 10:02:46 2024 +0200 @@ -223,7 +223,6 @@ # For Windows support wifexited = getattr(os, "WIFEXITED", lambda x: False) - # Whether to use IPv6 def checksocketfamily(name, port=20058): """return true if we can listen on localhost using family=name @@ -3398,6 +3397,7 @@ os.path.basename(t).startswith(b'test-') and (t.endswith(b'.py') or t.endswith(b'.t')) ): + m = testcasepattern.match(os.path.basename(t)) if m is not None: t_basename, casestr = m.groups()