summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/CrosscompilingEmulator/CrosscompilingEmulatorProperty.cmake
diff options
context:
space:
mode:
authorJean-Christophe Fillion-Robin <jchris.fillionr@kitware.com>2016-05-03 02:48:21 (GMT)
committerBrad King <brad.king@kitware.com>2016-05-03 14:42:21 (GMT)
commiteccfc0d185526b746b722ed3d3d1302515698c9e (patch)
tree62931f11c544a965d098c12cc6a2700e1c6d11e4 /Tests/RunCMake/CrosscompilingEmulator/CrosscompilingEmulatorProperty.cmake
parent8de778118becd964310a4137e22baf9264c88627 (diff)
downloadCMake-eccfc0d185526b746b722ed3d3d1302515698c9e.zip
CMake-eccfc0d185526b746b722ed3d3d1302515698c9e.tar.gz
CMake-eccfc0d185526b746b722ed3d3d1302515698c9e.tar.bz2
Tests: Improve source file name in RunCMake.CrosscompilingEmulator
The test executable returns with an error, so indicate this in the source name.
Diffstat (limited to 'Tests/RunCMake/CrosscompilingEmulator/CrosscompilingEmulatorProperty.cmake')
-rw-r--r--Tests/RunCMake/CrosscompilingEmulator/CrosscompilingEmulatorProperty.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/RunCMake/CrosscompilingEmulator/CrosscompilingEmulatorProperty.cmake b/Tests/RunCMake/CrosscompilingEmulator/CrosscompilingEmulatorProperty.cmake
index 22d537c..1aeb510 100644
--- a/Tests/RunCMake/CrosscompilingEmulator/CrosscompilingEmulatorProperty.cmake
+++ b/Tests/RunCMake/CrosscompilingEmulator/CrosscompilingEmulatorProperty.cmake
@@ -3,7 +3,7 @@
# -DCMAKE_CROSSCOMPILING_EMULATOR=/path/to/pseudo_emulator is passed to this
# test
-add_executable(target_with_emulator simple_src.cxx)
+add_executable(target_with_emulator simple_src_exiterror.cxx)
get_property(emulator TARGET target_with_emulator
PROPERTY CROSSCOMPILING_EMULATOR)
if(NOT "${emulator}" MATCHES "pseudo_emulator")
@@ -20,7 +20,7 @@ if(NOT "${emulator}" MATCHES "another_emulator")
endif()
unset(CMAKE_CROSSCOMPILING_EMULATOR CACHE)
-add_executable(target_without_emulator simple_src.cxx)
+add_executable(target_without_emulator simple_src_exiterror.cxx)
get_property(emulator TARGET target_without_emulator
PROPERTY CROSSCOMPILING_EMULATOR)
if(NOT "${emulator}" STREQUAL "")