summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/CrosscompilingEmulator/TryRun.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/TryRun.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/TryRun.cmake')
-rw-r--r--Tests/RunCMake/CrosscompilingEmulator/TryRun.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/RunCMake/CrosscompilingEmulator/TryRun.cmake b/Tests/RunCMake/CrosscompilingEmulator/TryRun.cmake
index 4851cc7..af3712c 100644
--- a/Tests/RunCMake/CrosscompilingEmulator/TryRun.cmake
+++ b/Tests/RunCMake/CrosscompilingEmulator/TryRun.cmake
@@ -2,7 +2,7 @@ set(CMAKE_CROSSCOMPILING 1)
try_run(run_result compile_result
${CMAKE_CURRENT_BINARY_DIR}
- ${CMAKE_CURRENT_SOURCE_DIR}/simple_src.cxx
+ ${CMAKE_CURRENT_SOURCE_DIR}/simple_src_exiterror.cxx
RUN_OUTPUT_VARIABLE run_output)
message(STATUS "run_output: ${run_output}")
@@ -13,6 +13,6 @@ set(CMAKE_CROSSCOMPILING_EMULATOR ${CMAKE_CROSSCOMPILING_EMULATOR}
"multi arg")
try_run(run_result compile_result
${CMAKE_CURRENT_BINARY_DIR}
- ${CMAKE_CURRENT_SOURCE_DIR}/simple_src.cxx
+ ${CMAKE_CURRENT_SOURCE_DIR}/simple_src_exiterror.cxx
RUN_OUTPUT_VARIABLE run_output)
message(STATUS "Emulator with arguments run_output: ${run_output}")