aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2021-01-14 09:50:14 +0100
committerPaolo Bonzini <pbonzini@redhat.com>2021-01-15 10:03:54 +0100
commit458c3125e0d7db9dbc9fcb73c5309174b2b1d19a (patch)
tree045f9c6cd57fe9a3d13af0511b7cb15b515e27e9
parentea2f34e2860680bab82aa7c2538971ab788209ce (diff)
downloadmeson-458c3125e0d7db9dbc9fcb73c5309174b2b1d19a.zip
meson-458c3125e0d7db9dbc9fcb73c5309174b2b1d19a.tar.gz
meson-458c3125e0d7db9dbc9fcb73c5309174b2b1d19a.tar.bz2
mtest: do not print time out message twice
Rebase mistake in "mtest: move timeout message to ConsoleLogger".
-rw-r--r--mesonbuild/mtest.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/mesonbuild/mtest.py b/mesonbuild/mtest.py
index 7e2d221..5a0af47 100644
--- a/mesonbuild/mtest.py
+++ b/mesonbuild/mtest.py
@@ -1204,8 +1204,6 @@ class SingleTestRunner:
stde_task = p.stderr.read(-1)
returncode, result, additional_error = await p.wait(self.runobj.timeout)
- if result is TestResult.TIMEOUT and self.options.verbose:
- print('{} time out (After {} seconds)'.format(self.test.name, self.runobj.timeout))
if stdo_task is not None:
stdo = decode(await stdo_task)