diff options
author | Florian Bruhin <git@the-compiler.org> | 2015-11-02 06:10:31 +0100 |
---|---|---|
committer | Florian Bruhin <git@the-compiler.org> | 2015-11-02 06:10:31 +0100 |
commit | 8e09fd929b87aea11459b0bdf756ee012be8caeb (patch) | |
tree | e9624d034177ebf107d5fb92f3c6dfe9f0f804a2 /tests | |
parent | 4451165a27eb547684487e866ce14f722d65a16f (diff) | |
download | qutebrowser-8e09fd929b87aea11459b0bdf756ee012be8caeb.tar.gz qutebrowser-8e09fd929b87aea11459b0bdf756ee012be8caeb.zip |
Ignore QWaitCondition error.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/integration/quteprocess.py | 4 |
1 files changed, 4 insertions, 0 deletions
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 |