summaryrefslogtreecommitdiffstats
path: root/tests/auto/widgets/qwebengineview
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2018-06-27 11:34:39 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2018-06-27 11:08:36 +0000
commit9055a9ba59c4077a676c9ec6438afb717fa6ca83 (patch)
tree9ce77988b06ef0778e0ee4641f3c7be76e87a87a /tests/auto/widgets/qwebengineview
parent75f9cc8a4a878b6940f986ecf243cf84fabdf886 (diff)
Stabilize tst_QWebEngineView::crashTests
We keep getting progress 100 without any in between on some CIs Change-Id: Iaa3a9911b97ab5b5f642ee32668b9e081cd0fe51 Reviewed-by: Michal Klocek <michal.klocek@qt.io>
Diffstat (limited to 'tests/auto/widgets/qwebengineview')
-rw-r--r--tests/auto/widgets/qwebengineview/tst_qwebengineview.cpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/auto/widgets/qwebengineview/tst_qwebengineview.cpp b/tests/auto/widgets/qwebengineview/tst_qwebengineview.cpp
index b21e7d7b2..fa816172a 100644
--- a/tests/auto/widgets/qwebengineview/tst_qwebengineview.cpp
+++ b/tests/auto/widgets/qwebengineview/tst_qwebengineview.cpp
@@ -306,11 +306,13 @@ class WebViewCrashTest : public QObject {
QWebEngineView* m_view;
public:
bool m_invokedStop;
+ bool m_stopBypassed;
WebViewCrashTest(QWebEngineView* view)
: m_view(view)
, m_invokedStop(false)
+ , m_stopBypassed(false)
{
view->connect(view, SIGNAL(loadProgress(int)), this, SLOT(loading(int)));
}
@@ -323,6 +325,8 @@ private Q_SLOTS:
QVERIFY(!m_invokedStop);
m_view->stop();
m_invokedStop = true;
+ } else if (!m_invokedStop && progress == 100) {
+ m_stopBypassed = true;
}
}
};
@@ -340,7 +344,10 @@ void tst_QWebEngineView::crashTests()
// If the verification fails, it means that either stopping doesn't work, or the hardware is
// too slow to load the page and thus to slow to issue the first loadProgress > 0 signal.
- QTRY_VERIFY_WITH_TIMEOUT(tester.m_invokedStop, 10000);
+ QTRY_VERIFY_WITH_TIMEOUT(tester.m_invokedStop || tester.m_stopBypassed, 10000);
+ if (tester.m_stopBypassed)
+ QEXPECT_FAIL("", "Loading was too fast to stop", Continue);
+ QVERIFY(tester.m_invokedStop);
}
void tst_QWebEngineView::microFocusCoordinates()