summaryrefslogtreecommitdiff
path: root/Tests/CrossCompile
diff options
context:
space:
mode:
authorZach Mullen <zach.mullen@kitware.com>2009-11-09 11:14:21 -0500
committerZach Mullen <zach.mullen@kitware.com>2009-11-09 11:14:21 -0500
commitef84e81011c66edfcc5223af0eff2790004d5689 (patch)
treed1fd38c454d2d851ee12b1f11f85b8581a4afe08 /Tests/CrossCompile
parent70dbbcc54278ef4f618ab316c67dcae0903fd6e2 (diff)
downloadcmake-ef84e81011c66edfcc5223af0eff2790004d5689.tar.gz
Added test coverage for TRY_RUN in cross compile mode.
Diffstat (limited to 'Tests/CrossCompile')
-rw-r--r--Tests/CrossCompile/CMakeLists.txt12
-rw-r--r--Tests/CrossCompile/main.c4
2 files changed, 16 insertions, 0 deletions
diff --git a/Tests/CrossCompile/CMakeLists.txt b/Tests/CrossCompile/CMakeLists.txt
new file mode 100644
index 0000000000..9ef7a8733e
--- /dev/null
+++ b/Tests/CrossCompile/CMakeLists.txt
@@ -0,0 +1,12 @@
+cmake_minimum_required (VERSION 2.6)
+PROJECT(CrossCompile)
+
+#Simulate the cross compile condition
+SET(CMAKE_SYSTEM_NAME "systemName")
+SET(CMAKE_CROSSCOMPILING ON)
+
+ADD_EXECUTABLE(CrossCompile main.c)
+
+TRY_RUN(run_result compile_result
+ ${CrossCompile_BINARY_DIR}
+ ${CrossCompile_SOURCE_DIR}/main.c)
diff --git a/Tests/CrossCompile/main.c b/Tests/CrossCompile/main.c
new file mode 100644
index 0000000000..8488f4e58f
--- /dev/null
+++ b/Tests/CrossCompile/main.c
@@ -0,0 +1,4 @@
+int main(void)
+{
+ return 0;
+}