aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/tests/test_generator/run_test.cmake
blob: 37e40b993b3dd1ae24dc6b4351adef9517e184b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Copyright (C) 2023 The Qt Company Ltd.
# SPDX-License-Identifier: BSD-3-Clause

# The tests are run through this script due to a limitation
# on versions of CMake lesser than 2.8, that prevent setting
# environment variables for tests from working.

set(ENV{PATH} "${ENV_PATH}")
set(ENV{QT_PLUGIN_PATH} "${ENV_QT_PLUGIN_PATH}")
execute_process(COMMAND ${TEST} WORKING_DIRECTORY "${WORKDIR}" RESULT_VARIABLE OK)

if(NOT OK EQUAL 0)
    message(SEND_ERROR "${TEST} failed!")
endif()