summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorGareth Stockwell <ext-gareth.stockwell@nokia.com>2010-07-26 10:53:28 (GMT)
committerGareth Stockwell <ext-gareth.stockwell@nokia.com>2010-07-26 11:33:41 (GMT)
commit3695cb25e4a53921880cfea4d4c731df44fa4396 (patch)
treec429fa83e68ce2d1c71509d4e08a44ee689767d7 /tests
parentcc3c416682791e1a2fd61d9a473ba3b4715c502d (diff)
downloadQt-3695cb25e4a53921880cfea4d4c731df44fa4396.zip
Qt-3695cb25e4a53921880cfea4d4c731df44fa4396.tar.gz
Qt-3695cb25e4a53921880cfea4d4c731df44fa4396.tar.bz2
Removed QEXPECT_FAIL macros from test cases which now pass
Task-number: QTBUG-10643 Task-number: QTBUG-11376 Reviewed-by: Jason Barron
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/qwidget/tst_qwidget.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/auto/qwidget/tst_qwidget.cpp b/tests/auto/qwidget/tst_qwidget.cpp
index 140356b..2397380 100644
--- a/tests/auto/qwidget/tst_qwidget.cpp
+++ b/tests/auto/qwidget/tst_qwidget.cpp
@@ -9681,7 +9681,6 @@ void tst_QWidget::destroyBackingStoreWhenHidden()
// Native child widget should once again share parent's backing store
QVERIFY(0 != backingStore(parent));
- QEXPECT_FAIL("", "QTBUG-10643", Continue);
QVERIFY(0 == backingStore(child));
}
@@ -9730,7 +9729,7 @@ void tst_QWidget::destroyBackingStoreWhenHidden()
QVERIFY(0 != backingStore(child));
// Parent is obscured, therefore its backing store should be destroyed
- QEXPECT_FAIL("", "QTBUG-10643", Continue);
+ QEXPECT_FAIL("", "QTBUG-12406", Continue);
QVERIFY(0 == backingStore(parent));
// Disable full screen
@@ -9744,7 +9743,6 @@ void tst_QWidget::destroyBackingStoreWhenHidden()
// Native child widget should once again share parent's backing store
QVERIFY(0 != backingStore(parent));
- QEXPECT_FAIL("", "QTBUG-10643", Continue);
QVERIFY(0 == backingStore(child));
}
}