diff options
-rwxr-xr-x | mesontest.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mesontest.py b/mesontest.py index cf10499..293678b 100755 --- a/mesontest.py +++ b/mesontest.py @@ -207,6 +207,8 @@ class TestHarness: try: (stdo, stde) = p.communicate(timeout=timeout) except subprocess.TimeoutExpired: + if self.options.verbose: + print("%s time out (After %d seconds)" % (test.name, timeout)) timed_out = True # Python does not provide multiplatform support for # killing a process and all its children so we need |