diff options
author | Olivier Goffart <ogoffart@trolltech.com> | 2009-10-08 15:46:48 (GMT) |
---|---|---|
committer | Olivier Goffart <ogoffart@trolltech.com> | 2009-10-08 15:50:46 (GMT) |
commit | dbf0d8c50fce24d36dd5e6eac853a1242ad89455 (patch) | |
tree | 1cf9b70c64b2e7eacbb9d42bc8b82f8d2d9b1804 | |
parent | e38529caa8e188b83c529e3eaca4eab8b8ab393d (diff) | |
download | Qt-dbf0d8c50fce24d36dd5e6eac853a1242ad89455.zip Qt-dbf0d8c50fce24d36dd5e6eac853a1242ad89455.tar.gz Qt-dbf0d8c50fce24d36dd5e6eac853a1242ad89455.tar.bz2 |
Skip the crashing selftest on Mac
The signal handler does seem to work on Mac for segfault
Reviewed-by: Rohan McGovern
-rw-r--r-- | tests/auto/selftests/tst_selftests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/selftests/tst_selftests.cpp b/tests/auto/selftests/tst_selftests.cpp index 1a2de65..579f4eb 100644 --- a/tests/auto/selftests/tst_selftests.cpp +++ b/tests/auto/selftests/tst_selftests.cpp @@ -299,7 +299,7 @@ void tst_Selftests::runSubTest() void tst_Selftests::initTestCase() { -#ifndef Q_OS_UNIX +#if !defined(Q_OS_UNIX) || defined(Q_WS_MAC) m_checkXMLBlacklist.append("crashes"); // This test crashes (XML valid on Unix only) #endif m_checkXMLBlacklist.append("waitwithoutgui"); // This test is not a QTestLib test. |