diff options
author | Harald Fernengel <harald@trolltech.com> | 2009-08-07 13:16:06 (GMT) |
---|---|---|
committer | Harald Fernengel <harald@trolltech.com> | 2009-08-07 13:16:17 (GMT) |
commit | cc0a411e5e874aa224c26298a109973cb15ea291 (patch) | |
tree | 41338beaa1ccf5e4857a8e1776f2472323e46ea3 | |
parent | 9676dbde2e7ef3d5d88c66397e438eb2a93db16f (diff) | |
download | Qt-cc0a411e5e874aa224c26298a109973cb15ea291.zip Qt-cc0a411e5e874aa224c26298a109973cb15ea291.tar.gz Qt-cc0a411e5e874aa224c26298a109973cb15ea291.tar.bz2 |
QVector::insert is currently not strongly exception safe
-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); } |