forked from qt-creator/qt-creator
Some of our auto tests fail, so add an EXCLUDE_FROM_PRECHECK option for add_qtc_test, which sets a corresponding label on the ctest, and exclude these when running ctest on COIN. Disable the Googletest based unittests for now, they are inconsistently failing on CI, e.g. sometimes timing out after 60 seconds for tests that usually take only a fraction of a second. tst_perfdata from the perfparser submodule also fails. Temporarily disable it explicitly, until the EXCLUDE_FROM_PRECHECK change can be merged there. Change-Id: I7e9d7aded75bbe8800f82f7aa125c181271a2a1f Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Jarek Kobus <jaroslaw.kobus@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
10 lines
237 B
CMake
10 lines
237 B
CMake
add_qtc_test(tst_qml_check
|
|
EXCLUDE_FROM_PRECHECK
|
|
DEPENDS QmlJS QmlJSTools ExtensionSystem Utils
|
|
DEFINES
|
|
QT_CREATOR
|
|
QTCREATORDIR="${PROJECT_SOURCE_DIR}"
|
|
TESTSRCDIR="${CMAKE_CURRENT_SOURCE_DIR}"
|
|
SOURCES tst_check.cpp
|
|
)
|