mirror of
git://code.qt.io/qt/qt5.git
synced 2026-04-04 12:46:36 +08:00
It will be used to write some manual tests for init-repository to ensure there are no big regressions between the perl and cmake scripts. It is only used for the manual tests and is not shipped or installed as part of the Qt installation. The code is licensed under BSD-3. The files were renamed to be more inline with Qt's naming. The contents of QtIRTestHelpers.cmake is one function from <cmake-upstream>/Tests/RunCMake/CMakeLists.txt The contents of QtIRRunCMake.cmake is the whole file <cmake-upstream>/Tests/RunCMake/RunCMake.cmake Task-number: QTBUG-120030 Change-Id: Ia3f459fe25b9b8c683a69b5dded2019e03eebdb9 Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io> Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@qt.io> Reviewed-by: Alexey Edelev <alexey.edelev@qt.io>
40 lines
1.5 KiB
CMake
40 lines
1.5 KiB
CMake
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
# file Copyright.txt or https://cmake.org/licensing for details.
|
|
#
|
|
# Original file location was Tests/RunCMake/CMakeLists.txt
|
|
|
|
macro(add_RunCMake_test test)
|
|
set(TEST_ARGS ${ARGN})
|
|
if ("${ARGV1}" STREQUAL "TEST_DIR")
|
|
if ("${ARGV2}" STREQUAL "")
|
|
message(FATAL_ERROR "Invalid args")
|
|
endif()
|
|
set(Test_Dir ${ARGV2})
|
|
list(REMOVE_AT TEST_ARGS 0)
|
|
list(REMOVE_AT TEST_ARGS 0)
|
|
else()
|
|
set(Test_Dir ${test})
|
|
endif()
|
|
if(CMAKE_C_COMPILER_ID STREQUAL "LCC")
|
|
list(APPEND TEST_ARGS -DRunCMake_TEST_LCC=1)
|
|
endif()
|
|
add_test(NAME RunCMake.${test} COMMAND ${CMAKE_CMAKE_COMMAND}
|
|
-DCMAKE_MODULE_PATH=${CMAKE_CURRENT_SOURCE_DIR}
|
|
-DRunCMake_GENERATOR_IS_MULTI_CONFIG=${_isMultiConfig}
|
|
-DRunCMake_GENERATOR=${CMAKE_GENERATOR}
|
|
-DRunCMake_GENERATOR_INSTANCE=${CMAKE_GENERATOR_INSTANCE}
|
|
-DRunCMake_GENERATOR_PLATFORM=${CMAKE_GENERATOR_PLATFORM}
|
|
-DRunCMake_GENERATOR_TOOLSET=${CMAKE_GENERATOR_TOOLSET}
|
|
-DRunCMake_MAKE_PROGRAM=${CMake_TEST_EXPLICIT_MAKE_PROGRAM}
|
|
-DRunCMake_SOURCE_DIR=${CMAKE_CURRENT_SOURCE_DIR}/${Test_Dir}
|
|
-DRunCMake_BINARY_DIR=${CMAKE_CURRENT_BINARY_DIR}/${test}
|
|
${${test}_ARGS}
|
|
${TEST_ARGS}
|
|
-P "${CMAKE_CURRENT_SOURCE_DIR}/${Test_Dir}/RunCMakeTest.cmake"
|
|
)
|
|
set_tests_properties("RunCMake.${test}" PROPERTIES LABELS "CMake;run")
|
|
if(${test} MATCHES ^CMP)
|
|
set_property(TEST "RunCMake.${test}" APPEND PROPERTY LABELS "policy")
|
|
endif()
|
|
endmacro()
|