9db3116226
Ancient versions of CMake required else(), endif(), and similar block termination commands to have arguments matching the command starting the block. This is no longer the preferred style. Run the following shell code: for c in else endif endforeach endfunction endmacro endwhile; do echo 's/\b'"$c"'\(\s*\)(.\+)/'"$c"'\1()/' done >convert.sed && git ls-files -z -- bootstrap '*.cmake' '*.cmake.in' '*CMakeLists.txt' | egrep -z -v '^(Utilities/cm|Source/kwsys/)' | egrep -z -v 'Tests/CMakeTests/While-Endwhile-' | xargs -0 sed -i -f convert.sed && rm convert.sed
73 lines
2.5 KiB
CMake
73 lines
2.5 KiB
CMake
#
|
|
# This script launches a GUI test using Squish. You should not call
|
|
# the script directly; instead, you should access it via the
|
|
# SQUISH_ADD_TEST macro that is defined in FindSquish.cmake.
|
|
#
|
|
# This script starts the Squish server, launches the test on the
|
|
# client, and finally stops the squish server. If any of these steps
|
|
# fail (including if the tests do not pass) then a fatal error is
|
|
# raised.
|
|
#
|
|
|
|
#=============================================================================
|
|
# Copyright 2008-2009 Kitware, Inc.
|
|
#
|
|
# Distributed under the OSI-approved BSD License (the "License");
|
|
# see accompanying file Copyright.txt for details.
|
|
#
|
|
# This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
# See the License for more information.
|
|
#=============================================================================
|
|
# (To distribute this file outside of CMake, substitute the full
|
|
# License text for the above reference.)
|
|
|
|
cmake_minimum_required(VERSION 2.6 FATAL_ERROR)
|
|
|
|
# print out the variable that we are using
|
|
message(STATUS "squish_aut='${squish_aut}'")
|
|
|
|
message(STATUS "squish_server_executable='${squish_server_executable}'")
|
|
message(STATUS "squish_client_executable='${squish_client_executable}'")
|
|
message(STATUS "squish_libqtdir ='${squish_libqtdir}'")
|
|
message(STATUS "squish_test_case='${squish_test_case}'")
|
|
message(STATUS "squish_wrapper='${squish_wrapper}'")
|
|
message(STATUS "squish_env_vars='${squish_env_vars}'")
|
|
|
|
# parse enviornment variables
|
|
foreach(i ${squish_env_vars})
|
|
message(STATUS "parsing env var key/value pair ${i}")
|
|
string(REGEX MATCH "([^=]*)=(.*)" squish_env_name ${i})
|
|
message(STATUS "key=${CMAKE_MATCH_1}")
|
|
message(STATUS "value=${CMAKE_MATCH_2}")
|
|
set ( ENV{${CMAKE_MATCH_1}} ${CMAKE_MATCH_2} )
|
|
endforeach()
|
|
|
|
if (QT4_INSTALLED)
|
|
# record qt lib directory
|
|
set ( ENV{${SQUISH_LIBQTDIR}} ${squish_libqtdir} )
|
|
endif ()
|
|
|
|
# run the test
|
|
if (WIN32)
|
|
execute_process(
|
|
COMMAND ${CMAKE_ROOT}/Modules/SquishRunTestCase.bat ${squish_server_executable} ${squish_client_executable} ${squish_test_case} ${squish_wrapper} ${squish_aut}
|
|
RESULT_VARIABLE test_rv
|
|
)
|
|
endif ()
|
|
|
|
if (UNIX)
|
|
execute_process(
|
|
COMMAND ${CMAKE_ROOT}/Modules/SquishRunTestCase.sh ${squish_server_executable} ${squish_client_executable} ${squish_test_case} ${squish_wrapper} ${squish_aut}
|
|
RESULT_VARIABLE test_rv
|
|
)
|
|
endif ()
|
|
|
|
# check for an error with running the test
|
|
if(NOT "${test_rv}" STREQUAL "0")
|
|
message(FATAL_ERROR "Error running Squish test")
|
|
endif()
|
|
|
|
|
|
|