diff options
author | mread <qt-info@nokia.com> | 2009-08-18 13:19:17 (GMT) |
---|---|---|
committer | mread <qt-info@nokia.com> | 2009-08-18 13:19:17 (GMT) |
commit | 3de310886db6c6d2a069c2bc78ab90ade8a827a9 (patch) | |
tree | 4193f9c911893ceb9b1a73ebe854fa78d86fc495 /tests/auto/exceptionsafety_objects | |
parent | 06524f769fec76fa7ebcc39ac88ac9e08c720677 (diff) | |
download | Qt-3de310886db6c6d2a069c2bc78ab90ade8a827a9.zip Qt-3de310886db6c6d2a069c2bc78ab90ade8a827a9.tar.gz Qt-3de310886db6c6d2a069c2bc78ab90ade8a827a9.tar.bz2 |
disabled exceptions safety tests for Symbian 3.x as they always fail due to missing thowing new
Diffstat (limited to 'tests/auto/exceptionsafety_objects')
-rw-r--r-- | tests/auto/exceptionsafety_objects/tst_exceptionsafety_objects.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/auto/exceptionsafety_objects/tst_exceptionsafety_objects.cpp b/tests/auto/exceptionsafety_objects/tst_exceptionsafety_objects.cpp index e74d158..15c9cfb 100644 --- a/tests/auto/exceptionsafety_objects/tst_exceptionsafety_objects.cpp +++ b/tests/auto/exceptionsafety_objects/tst_exceptionsafety_objects.cpp @@ -49,7 +49,8 @@ QT_USE_NAMESPACE // this test only works with // * GLIBC // * MSVC - only debug builds (we need the crtdbg.h helpers) -#if (defined(QT_NO_EXCEPTIONS) || (!defined(__GLIBC__) && !defined(Q_CC_MSVC) && !defined(Q_OS_SYMBIAN))) && !defined(Q_MOC_RUN) +// * SYMBIAN - only when __UHEAP_BURSTFAILNEXT is available +#if (defined(QT_NO_EXCEPTIONS) || (!defined(__GLIBC__) && !defined(Q_CC_MSVC) && (!defined(Q_OS_SYMBIAN) || !defined(__UHEAP_BURSTFAILNEXT)))) && !defined(Q_MOC_RUN) QTEST_NOOP_MAIN #else |