From 8e09fd929b87aea11459b0bdf756ee012be8caeb Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Mon, 2 Nov 2015 06:10:31 +0100 Subject: [PATCH] Ignore QWaitCondition error. --- tests/integration/quteprocess.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/integration/quteprocess.py b/tests/integration/quteprocess.py index 18b5276f9..48e23fc4c 100644 --- a/tests/integration/quteprocess.py +++ b/tests/integration/quteprocess.py @@ -121,6 +121,10 @@ class QuteProc(testprocess.Process): return None elif not line.strip(): return None + elif (line == "QWaitCondition: Destroyed while threads are still " + "waiting"): + # Happens on Windows during exit sometimes + return None else: raise testprocess.InvalidLine