Skip failing tests in tst_QPixmap on Wayland
Task-number: QTBUG-66846 Change-Id: I61bd3e59e51fd1d988a30b6454a6a90650a3069b Reviewed-by: Eirik Aavitsland <eirik.aavitsland@qt.io>bb10
parent
17b65edad1
commit
951e204b29
|
|
@ -527,8 +527,16 @@ void tst_QPixmap::fill_transparent()
|
|||
QVERIFY(pixmap.hasAlphaChannel());
|
||||
}
|
||||
|
||||
static bool isPlatformWayland()
|
||||
{
|
||||
return QGuiApplication::platformName().startsWith(QLatin1String("wayland"), Qt::CaseInsensitive);
|
||||
}
|
||||
|
||||
void tst_QPixmap::mask()
|
||||
{
|
||||
if (isPlatformWayland())
|
||||
QSKIP("Wayland: This fails. See QTBUG-66983.");
|
||||
|
||||
QPixmap pm(100, 100);
|
||||
QBitmap bm(100, 100);
|
||||
|
||||
|
|
@ -770,6 +778,9 @@ void tst_QPixmap::convertFromImageNoDetach()
|
|||
|
||||
void tst_QPixmap::convertFromImageNoDetach2()
|
||||
{
|
||||
if (isPlatformWayland())
|
||||
QSKIP("Wayland: This fails. See QTBUG-66984.");
|
||||
|
||||
QPixmap randomPixmap(10, 10);
|
||||
if (randomPixmap.handle()->classId() != QPlatformPixmap::RasterClass)
|
||||
QSKIP("Test only valid for raster pixmaps");
|
||||
|
|
@ -1444,6 +1455,9 @@ void tst_QPixmap::fromImageReaderAnimatedGif()
|
|||
|
||||
void tst_QPixmap::task_246446()
|
||||
{
|
||||
if (isPlatformWayland())
|
||||
QSKIP("Wayland: This fails. See QTBUG-66985.");
|
||||
|
||||
// This crashed without the bugfix in 246446
|
||||
QPixmap pm(10, 10);
|
||||
pm.fill(Qt::transparent); // force 32-bit depth
|
||||
|
|
|
|||
Loading…
Reference in New Issue