aboutsummaryrefslogtreecommitdiffstats
path: root/tests/system/shared/qtcreator.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/system/shared/qtcreator.py')
-rw-r--r--tests/system/shared/qtcreator.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/system/shared/qtcreator.py b/tests/system/shared/qtcreator.py
index 265fa10107..b33d5f6170 100644
--- a/tests/system/shared/qtcreator.py
+++ b/tests/system/shared/qtcreator.py
@@ -118,7 +118,8 @@ def waitForCleanShutdown(timeOut=10):
if not shutdownDone and datetime.utcnow() > endtime:
break
if platform.system() == 'Linux' and JIRA.isBugStillOpen(15749):
- pgrepOutput = getOutputFromCmdline(["pgrep", "-f", "qtcreator_process_stub"])
+ pgrepOutput = getOutputFromCmdline(["pgrep", "-f", "qtcreator_process_stub"],
+ acceptedError=1)
pids = pgrepOutput.splitlines()
if len(pids):
print("Killing %d qtcreator_process_stub instances" % len(pids))