summaryrefslogtreecommitdiff
path: root/tests/end2end/fixtures/testprocess.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/end2end/fixtures/testprocess.py')
-rw-r--r--tests/end2end/fixtures/testprocess.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/end2end/fixtures/testprocess.py b/tests/end2end/fixtures/testprocess.py
index 814d16806..85778c3e0 100644
--- a/tests/end2end/fixtures/testprocess.py
+++ b/tests/end2end/fixtures/testprocess.py
@@ -22,6 +22,7 @@
import re
import os
import time
+import warnings
import attr
import pytest
@@ -316,8 +317,11 @@ class Process(QObject):
else:
self.proc.terminate()
- ok = self.proc.waitForFinished()
+ ok = self.proc.waitForFinished(5000)
if not ok:
+ cmdline = ' '.join([self.proc.program()] + self.proc.arguments())
+ warnings.warn(f"Test process {cmdline} with PID {self.proc.processId()} "
+ "failed to terminate!")
self.proc.kill()
self.proc.waitForFinished()