diff options
author | axis <qt-info@nokia.com> | 2009-11-20 07:56:40 (GMT) |
---|---|---|
committer | axis <qt-info@nokia.com> | 2009-11-20 07:56:40 (GMT) |
commit | d9fa92933ff6ff1afad342f7f94e37f810cf8176 (patch) | |
tree | 77e2c90877ea528d71755e7322c025c8284636a7 /tests/auto | |
parent | a8c8c2274d2d0a708786adbb357013955f99c0af (diff) | |
parent | c7d7fae74f3b8df9e5b07493a36db31f2c499699 (diff) | |
download | Qt-d9fa92933ff6ff1afad342f7f94e37f810cf8176.zip Qt-d9fa92933ff6ff1afad342f7f94e37f810cf8176.tar.gz Qt-d9fa92933ff6ff1afad342f7f94e37f810cf8176.tar.bz2 |
Merge branch '4.6' of git@scm.dev.nokia.troll.no:qt/qt-s60-public into 4.6-staging2
Diffstat (limited to 'tests/auto')
-rw-r--r-- | tests/auto/qpixmap/tst_qpixmap.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/auto/qpixmap/tst_qpixmap.cpp b/tests/auto/qpixmap/tst_qpixmap.cpp index d7f042e..0effd01 100644 --- a/tests/auto/qpixmap/tst_qpixmap.cpp +++ b/tests/auto/qpixmap/tst_qpixmap.cpp @@ -47,6 +47,7 @@ #include <qmatrix.h> #include <qdesktopwidget.h> #include <qpaintengine.h> +#include <qsplashscreen.h> #include <private/qpixmapdata_p.h> @@ -169,6 +170,7 @@ private slots: void loadFromDataNullValues(); void preserveDepth(); + void splash_crash(); }; static bool lenientCompare(const QPixmap &actual, const QPixmap &expected) @@ -1421,6 +1423,17 @@ void tst_QPixmap::fromImage_crash() delete img; } +//This is testing QPixmapData::createCompatiblePixmapData - see QTBUG-5977 +void tst_QPixmap::splash_crash() +{ + QPixmap pix; + pix = QPixmap(":/images/designer.png"); + QSplashScreen splash(pix); + splash.show(); + QCoreApplication::processEvents(); + splash.close(); +} + void tst_QPixmap::fromData() { unsigned char bits[] = { 0xaa, 0x55 }; |