84f0add9b3
This is the first change to re-enable the autotests for the individual qtbase modules. This means adding subdir.CONFIG=no_check_target for each module (except corelib) in tests/auto/auto.pro instead of in tests/tests.pro QFileSystemWatcher, QIODeice, QSettings, QTextStream, QSocketNotifier, QVariant, QPluginLoader, QLocale: These tests currently fail, which will block any changes that attempt to re-enable the autotests. Ignore the failures for now by marking them as insignificant. QAbstractItemModel: This test currently crashes, which can destabilize the CI system when attempting to re-enable the autotests. Skip this test for now by disabling the check target for it. Change-Id: Ie5147d5c5cfae5e7d0a495d5c4788ce92fe2e6d8 Reviewed-by: Marius Storm-Olsen <marius.storm-olsen@nokia.com>
28 lines
550 B
Prolog
28 lines
550 B
Prolog
TEMPLATE=subdirs
|
|
SUBDIRS=\
|
|
qabstractitemmodel \
|
|
qcoreapplication \
|
|
qeventloop \
|
|
qitemmodel \
|
|
qmath \
|
|
qmetaobject \
|
|
qmetaobjectbuilder \
|
|
qmetatype \
|
|
qmimedata \
|
|
qobject \
|
|
qpointer \
|
|
qsignalmapper \
|
|
qsocketnotifier \
|
|
qtimer \
|
|
qtranslator \
|
|
qvariant \
|
|
qwineventnotifier
|
|
|
|
!contains(QT_CONFIG, private_tests): SUBDIRS -= \
|
|
qsocketnotifier
|
|
|
|
# This test is only applicable on Windows
|
|
!win32*:SUBDIRS -= qwineventnotifier
|
|
|
|
mac: qabstractitemmodel.CONFIG = no_check_target # QTBUG-22748
|