diff options
author | Sergio Ahumada <sergio.ahumada@digia.com> | 2012-11-10 22:27:36 (GMT) |
---|---|---|
committer | The Qt Project <gerrit-noreply@qt-project.org> | 2012-11-13 10:01:47 (GMT) |
commit | f99e974d957cf669293600c609f92a741d7d53d7 (patch) | |
tree | 40b2cfe81d0aa25af4d1e32b62fcd4440cc3cd92 /tests/auto/exceptionsafety_objects | |
parent | e92f1d58fc42785247492078b23286eef2b4e5a3 (diff) | |
download | Qt-f99e974d957cf669293600c609f92a741d7d53d7.zip Qt-f99e974d957cf669293600c609f92a741d7d53d7.tar.gz Qt-f99e974d957cf669293600c609f92a741d7d53d7.tar.bz2 |
test: Mark tst_ExceptionSafety_Objects::objects() as QSKIP
This test is crashing so marking it as QSKIP.
Task-number: QTBUG-18927
Change-Id: Iba6e6f556793747f09d2a8fa6af5c9169a53dfe9
Reviewed-by: Simo Fält <simo.falt@digia.com>
Reviewed-by: Janne Anttila <janne.anttila@digia.com>
Diffstat (limited to 'tests/auto/exceptionsafety_objects')
-rw-r--r-- | tests/auto/exceptionsafety_objects/exceptionsafety_objects.pro | 2 | ||||
-rw-r--r-- | tests/auto/exceptionsafety_objects/tst_exceptionsafety_objects.cpp | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/tests/auto/exceptionsafety_objects/exceptionsafety_objects.pro b/tests/auto/exceptionsafety_objects/exceptionsafety_objects.pro index 7912f83..8a9e566 100644 --- a/tests/auto/exceptionsafety_objects/exceptionsafety_objects.pro +++ b/tests/auto/exceptionsafety_objects/exceptionsafety_objects.pro @@ -5,4 +5,4 @@ QT += testlib SOURCES += tst_exceptionsafety_objects.cpp HEADERS += oomsimulator.h 3rdparty/valgrind.h 3rdparty/memcheck.h -CONFIG+=insignificant_test # QTQAINFRA-428 +CONFIG+=insignificant_test # QTBUG-18927 diff --git a/tests/auto/exceptionsafety_objects/tst_exceptionsafety_objects.cpp b/tests/auto/exceptionsafety_objects/tst_exceptionsafety_objects.cpp index 5bbe8ab..5182c11 100644 --- a/tests/auto/exceptionsafety_objects/tst_exceptionsafety_objects.cpp +++ b/tests/auto/exceptionsafety_objects/tst_exceptionsafety_objects.cpp @@ -359,6 +359,9 @@ void tst_ExceptionSafety_Objects::objects() || tag == QLatin1String("QThreadPool")) QSKIP("This type of object is not currently strongly exception safe", SkipSingle); + if (tag == QLatin1String("QWidget")) + QSKIP("QTBUG-18927", SkipAll); + QFETCH(AbstractTester *, objectCreator); doOOMTest(*objectCreator, 0); |