diff options
author | Gareth Stockwell <ext-gareth.stockwell@nokia.com> | 2010-07-26 10:53:28 (GMT) |
---|---|---|
committer | Toby Tomkins <toby.tomkins@nokia.com> | 2010-08-04 03:46:24 (GMT) |
commit | 1c850efd7f877b5091d36ddfe98d8c2cb787f606 (patch) | |
tree | da1fb00297f85e705dfc11904ec3dd50efc1df9b /tests | |
parent | fb8beb538b2f488eac50eddf605c3f2a0d21b0b1 (diff) | |
download | Qt-1c850efd7f877b5091d36ddfe98d8c2cb787f606.zip Qt-1c850efd7f877b5091d36ddfe98d8c2cb787f606.tar.gz Qt-1c850efd7f877b5091d36ddfe98d8c2cb787f606.tar.bz2 |
Removed QEXPECT_FAIL macros from test cases which now pass
Task-number: QTBUG-10643
Task-number: QTBUG-11376
Reviewed-by: Jason Barron
(cherry picked from commit 3695cb25e4a53921880cfea4d4c731df44fa4396)
Diffstat (limited to 'tests')
-rw-r--r-- | tests/auto/qwidget/tst_qwidget.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/auto/qwidget/tst_qwidget.cpp b/tests/auto/qwidget/tst_qwidget.cpp index 2d559c8..fee7ef0 100644 --- a/tests/auto/qwidget/tst_qwidget.cpp +++ b/tests/auto/qwidget/tst_qwidget.cpp @@ -9691,7 +9691,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)); } @@ -9740,7 +9739,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 @@ -9754,7 +9753,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)); } } |