rust/cargo-c: update to 0.10.9+cargo-0.85.0
[oi-userland.git] / components / developer / mercurial / patches / 03-Timout.patch
blob7d2bae7ffb46224801752a978d50e4e389d72613
1 https://bz.mercurial-scm.org/show_bug.cgi?id=6912
3 --- mercurial-6.8.1/tests/run-tests.py.orig
4 +++ mercurial-6.8.1/tests/run-tests.py
5 @@ -310,9 +310,9 @@
6 start = time.time()
7 while time.time() - start < timeout and p.returncode is None:
8 time.sleep(0.1)
9 - p.timeout = True
10 - vlog('# Timout reached for process %d' % p.pid)
11 if p.returncode is None:
12 + p.timeout = True
13 + vlog('# Timeout reached for process %d' % p.pid)
14 terminate(p)
16 threading.Thread(target=t).start()