# HG changeset patch # User Pierre-Yves David # Date 2019-09-07 12:51:18 # Node ID 344a086bb7647509624102ffdc6dc52bfe9beeba # Parent da2c360899c95b6a5df72b332c6022755de660f2 tests: register test-merge-combination.t as small but slow run-tests.py use file size as an heuristic for test run time. The new `test-merge-combination.t` is a small file that do a lot of processing. As a result it tend to be scheduled really late but delay the full test run by a lot. On an example test run, the one-before-last test completed 279s after the start of the run, while `test-merge-combination.t` finished 355s after it. A 76s delay. This delay can be avoided since `test-merge-combination.t` only got started 175s after the start of the run. diff --git a/tests/run-tests.py b/tests/run-tests.py --- a/tests/run-tests.py +++ b/tests/run-tests.py @@ -2513,6 +2513,7 @@ def sorttests(testdescs, previoustimes, b'check': 100, b'gendoc': 100, b'contrib-perf': 200, + b'merge-combination': 100, } perf = {}