# HG changeset patch # User Pierre-Yves David # Date 1551034583 -3600 # Node ID 4cbccb50df46699d309eb904e7b8a5670f7a694d # Parent bc1c1435a87478e933a788a7b859c1df07758b69 runtest: also update slow test timeout during `#if` clauses For a `#if slow` test to be useful, we need the test timeout to be increased. Without this, the slow section would likely be killed before it finish. diff -r bc1c1435a874 -r 4cbccb50df46 tests/run-tests.py --- a/tests/run-tests.py Sun Feb 24 19:56:08 2019 +0100 +++ b/tests/run-tests.py Sun Feb 24 19:56:23 2019 +0100 @@ -1397,6 +1397,7 @@ return False else: reqs.append(arg) + self._detectslow(reqs) return self._hghave(reqs)[0] def _parsetest(self, lines):