QtBase: Skip some tst_qwidget steps in Ubuntu 11.10
Same steps keeps failing on Ubuntu 11.10 without valid reason. Task-number: QTBUG-30566 Change-Id: Ic7bf65496ff9ad9c4fdef42a30b808aa2c45a1e5 Reviewed-by: Sergio Ahumada <sergio.ahumada@digia.com> Reviewed-by: Frederik Gladhorn <frederik.gladhorn@digia.com>
This commit is contained in:
parent
6a040d5c81
commit
d91afa1558
@ -23,3 +23,4 @@ x11 {
|
||||
!wince*:win32: LIBS += -luser32 -lgdi32
|
||||
|
||||
mac:CONFIG+=insignificant_test # QTBUG-25300, QTBUG-23695
|
||||
linux-*:system(". /etc/lsb-release && [ $DISTRIB_CODENAME = oneiric ]"):DEFINES+=UBUNTU_ONEIRIC # QTBUG-30566
|
@ -4859,6 +4859,9 @@ void tst_QWidget::moveChild_data()
|
||||
|
||||
void tst_QWidget::moveChild()
|
||||
{
|
||||
#if defined(UBUNTU_ONEIRIC)
|
||||
QSKIP("QTBUG-30566 - Unstable auto-test");
|
||||
#endif
|
||||
QFETCH(QPoint, offset);
|
||||
|
||||
ColorWidget parent;
|
||||
@ -4909,6 +4912,9 @@ void tst_QWidget::moveChild()
|
||||
|
||||
void tst_QWidget::showAndMoveChild()
|
||||
{
|
||||
#if defined(UBUNTU_ONEIRIC)
|
||||
QSKIP("QTBUG-30566 - Unstable auto-test");
|
||||
#endif
|
||||
QWidget parent(0, Qt::FramelessWindowHint);
|
||||
// prevent custom styles
|
||||
parent.setStyle(QStyleFactory::create(QLatin1String("Windows")));
|
||||
@ -7636,6 +7642,9 @@ void tst_QWidget::doubleRepaint()
|
||||
#if defined(Q_OS_MAC)
|
||||
if (!macHasAccessToWindowsServer())
|
||||
QSKIP("Not having window server access causes the wrong number of repaints to be issues");
|
||||
#endif
|
||||
#if defined(UBUNTU_ONEIRIC)
|
||||
QSKIP("QTBUG-30566 - Unstable auto-test");
|
||||
#endif
|
||||
UpdateWidget widget;
|
||||
widget.setFocusPolicy(Qt::StrongFocus);
|
||||
|
Loading…
Reference in New Issue
Block a user