diff options
author | Gareth Stockwell <ext-gareth.stockwell@nokia.com> | 2010-07-26 10:53:28 (GMT) |
---|---|---|
committer | Gareth Stockwell <ext-gareth.stockwell@nokia.com> | 2010-07-26 11:34:01 (GMT) |
commit | 42c6ab328e813fcb845524725d81739f2af17aa0 (patch) | |
tree | 088305c53c6e3246f35241eb68fb6524aaffaf4d /tests/auto/qwidget | |
parent | 2983e4d26a2492408c49a55a0db9173c1df1456c (diff) | |
download | Qt-42c6ab328e813fcb845524725d81739f2af17aa0.zip Qt-42c6ab328e813fcb845524725d81739f2af17aa0.tar.gz Qt-42c6ab328e813fcb845524725d81739f2af17aa0.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/auto/qwidget')
-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 f20d27a..f722f89 100644 --- a/tests/auto/qwidget/tst_qwidget.cpp +++ b/tests/auto/qwidget/tst_qwidget.cpp @@ -9694,7 +9694,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)); } @@ -9743,7 +9742,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 @@ -9757,7 +9756,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)); } } |