7d70edd31c
The bindable property tests were not using the QTestPrivate helpers, so add a new test which uses them. The new tests revealed a binding loop for the interval property. Fix it in a usual way by explicitly removing the binding and using {set}ValueBypassingBindings() in the setter. Task-number: QTBUG-116346 Pick-to: 6.6 6.5 Change-Id: If94f57938da449a68e3527aead5ebd55ba410adb Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io> Reviewed-by: Alexey Edelev <alexey.edelev@qt.io>
36 lines
999 B
CMake
36 lines
999 B
CMake
# Copyright (C) 2022 The Qt Company Ltd.
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
#####################################################################
|
|
## tst_qguitimer Test:
|
|
#####################################################################
|
|
|
|
if(NOT QT_BUILD_STANDALONE_TESTS AND NOT QT_BUILDING_QT)
|
|
cmake_minimum_required(VERSION 3.16)
|
|
project(tst_qguitimer LANGUAGES CXX)
|
|
find_package(Qt6BuildInternals REQUIRED COMPONENTS STANDALONE_TEST)
|
|
endif()
|
|
|
|
qt_internal_add_test(tst_qguitimer
|
|
SOURCES
|
|
../../../corelib/kernel/qtimer/tst_qtimer.cpp
|
|
LIBRARIES
|
|
Qt::CorePrivate
|
|
Qt::Gui
|
|
Qt::TestPrivate
|
|
)
|
|
|
|
if(QT_FEATURE_glib AND UNIX)
|
|
# only exists as a different dispatcher for XCB
|
|
qt_internal_add_test(tst_qguitimer_no_glib
|
|
SOURCES
|
|
../../../corelib/kernel/qtimer/tst_qtimer.cpp
|
|
DEFINES
|
|
DISABLE_GLIB
|
|
LIBRARIES
|
|
Qt::CorePrivate
|
|
Qt::Gui
|
|
Qt::TestPrivate
|
|
)
|
|
endif()
|