Ignore QWaitCondition error.

This commit is contained in:
Florian Bruhin 2015-11-02 06:10:31 +01:00
parent 4451165a27
commit 8e09fd929b

View File

@ -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