From 16a398f598b16f196df2b011e893c653c4854ea3 Mon Sep 17 00:00:00 2001 From: Friedemann Kleint Date: Tue, 23 Oct 2012 16:40:19 +0200 Subject: [PATCH] Fix crash in qtlocation tests. Task-number: QTBUG-27696 Change-Id: I0cc12e1be25a789a8245fae3a444629ca57872ef Reviewed-by: Christopher Adams Reviewed-by: Martin Jones --- src/qmltest/quicktest.cpp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/qmltest/quicktest.cpp b/src/qmltest/quicktest.cpp index 0a99654..d622ac9 100644 --- a/src/qmltest/quicktest.cpp +++ b/src/qmltest/quicktest.cpp @@ -322,7 +322,7 @@ int quick_test_main(int argc, char **argv, const char *name, const char *sourceD rootobj.setWindowShown(true); if (!rootobj.hasQuit && rootobj.hasTestCase()) eventLoop.exec(); - view->hide(); + // view->hide(); Causes a crash in Qt3D due to deletion of the GL context, see QTBUG-27696 } } -- 1.7.2.5