diff options
-rw-r--r-- | tests/auto/exceptionsafety_objects/tst_exceptionsafety_objects.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/auto/exceptionsafety_objects/tst_exceptionsafety_objects.cpp b/tests/auto/exceptionsafety_objects/tst_exceptionsafety_objects.cpp index 73f51cf..e74d158 100644 --- a/tests/auto/exceptionsafety_objects/tst_exceptionsafety_objects.cpp +++ b/tests/auto/exceptionsafety_objects/tst_exceptionsafety_objects.cpp @@ -406,7 +406,6 @@ void tst_ExceptionSafetyObjects::widgets_data() NEWROW(QTableWidget); NEWROW(QTreeView); NEWROW(QTreeWidget); - } void tst_ExceptionSafetyObjects::widgets() @@ -617,6 +616,9 @@ void tst_ExceptionSafetyObjects::vector() { QFETCH(TestFunction, testFunction); + if (QLatin1String(QTest::currentDataTag()) == QLatin1String("insert")) + QSKIP("QVector::insert is currently not strongly exception safe", SkipSingle); + doOOMTest(testFunction, 0); } |