From 788eebc1ad1d67c2e62ac32bb5bc733d1d5b4563 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 18 Aug 2016 19:29:34 +0200 Subject: [PATCH] bdd: Ignore "Running without the SUID sandbox!" --- tests/end2end/fixtures/quteprocess.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/end2end/fixtures/quteprocess.py b/tests/end2end/fixtures/quteprocess.py index af6cff432..5a6385ead 100644 --- a/tests/end2end/fixtures/quteprocess.py +++ b/tests/end2end/fixtures/quteprocess.py @@ -196,6 +196,9 @@ class QuteProc(testprocess.Process): except testprocess.InvalidLine: if not line.strip(): return None + elif 'Running without the SUID sandbox!' in line: + # QtWebEngine error + return None elif is_ignored_qt_message(line): return None else: