From 458c3125e0d7db9dbc9fcb73c5309174b2b1d19a Mon Sep 17 00:00:00 2001 From: Paolo Bonzini Date: Thu, 14 Jan 2021 09:50:14 +0100 Subject: [PATCH] mtest: do not print time out message twice Rebase mistake in "mtest: move timeout message to ConsoleLogger". --- mesonbuild/mtest.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/mesonbuild/mtest.py b/mesonbuild/mtest.py index 7e2d22192..5a0af47eb 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)