|
@@ -4,6 +4,18 @@ if(POLICY CMP0129)
|
|
|
endif()
|
|
|
project(TryCompile)
|
|
|
|
|
|
+macro(EXPECT_PASS var out)
|
|
|
+ if(NOT ${var})
|
|
|
+ message(SEND_ERROR "Should pass failed ${out}")
|
|
|
+ endif()
|
|
|
+endmacro()
|
|
|
+
|
|
|
+macro(EXPECT_FAIL var out)
|
|
|
+ if(${var})
|
|
|
+ message(SEND_ERROR "Should fail passed ${out}")
|
|
|
+ endif()
|
|
|
+endmacro()
|
|
|
+
|
|
|
macro(TEST_ASSERT value msg)
|
|
|
if (NOT ${value})
|
|
|
message (SEND_ERROR "Assertion failure:" ${msg} )
|
|
@@ -28,112 +40,31 @@ macro(TEST_EXPECT_CONTAINS command expected)
|
|
|
endif()
|
|
|
endmacro()
|
|
|
|
|
|
-
|
|
|
-# try to compile a file that should compile
|
|
|
-try_compile(SHOULD_PASS
|
|
|
- ${TryCompile_BINARY_DIR}
|
|
|
- ${TryCompile_SOURCE_DIR}/pass.c
|
|
|
- OUTPUT_VARIABLE TRY_OUT)
|
|
|
-if(NOT SHOULD_PASS)
|
|
|
- message(SEND_ERROR "should pass failed ${TRY_OUT}")
|
|
|
-endif()
|
|
|
-
|
|
|
-# try to compile a file that should compile
|
|
|
-# also check that COPY_FILE works
|
|
|
-try_compile(SHOULD_PASS
|
|
|
- ${TryCompile_BINARY_DIR}
|
|
|
- ${TryCompile_SOURCE_DIR}/pass.c
|
|
|
- OUTPUT_VARIABLE TRY_OUT
|
|
|
- COPY_FILE ${TryCompile_BINARY_DIR}/CopyOfPass
|
|
|
- )
|
|
|
-
|
|
|
-if(NOT SHOULD_PASS)
|
|
|
- message(SEND_ERROR "should pass failed ${TRY_OUT}")
|
|
|
-endif()
|
|
|
-if(NOT EXISTS "${TryCompile_BINARY_DIR}/CopyOfPass")
|
|
|
- message(SEND_ERROR "COPY_FILE to \"${TryCompile_BINARY_DIR}/CopyOfPass\" failed")
|
|
|
-else()
|
|
|
- file(REMOVE "${TryCompile_BINARY_DIR}/CopyOfPass")
|
|
|
-endif()
|
|
|
-
|
|
|
-# try to compile a file that should compile
|
|
|
-# also check that COPY_FILE_ERROR works
|
|
|
-file(WRITE ${TryCompile_BINARY_DIR}/invalid "")
|
|
|
-try_compile(SHOULD_PASS
|
|
|
- ${TryCompile_BINARY_DIR}
|
|
|
- ${TryCompile_SOURCE_DIR}/pass.c
|
|
|
- OUTPUT_VARIABLE TRY_OUT
|
|
|
- COPY_FILE ${TryCompile_BINARY_DIR}/invalid/path
|
|
|
- COPY_FILE_ERROR _captured
|
|
|
- )
|
|
|
-if(NOT SHOULD_PASS)
|
|
|
- message(SEND_ERROR "should pass failed ${TRY_OUT}")
|
|
|
-endif()
|
|
|
-if(NOT _captured MATCHES "Cannot copy output executable.*/invalid/path")
|
|
|
- message(SEND_ERROR "COPY_FILE_ERROR did not capture expected message")
|
|
|
-endif()
|
|
|
-
|
|
|
-# try to compile a file that should not compile
|
|
|
-try_compile(SHOULD_FAIL
|
|
|
- ${TryCompile_BINARY_DIR}
|
|
|
- ${TryCompile_SOURCE_DIR}/fail.c
|
|
|
- OUTPUT_VARIABLE TRY_OUT)
|
|
|
-if(SHOULD_FAIL)
|
|
|
- message(SEND_ERROR "Should fail passed ${TRY_OUT}")
|
|
|
-endif()
|
|
|
-
|
|
|
-# try to compile two files that should compile
|
|
|
-try_compile(SHOULD_PASS
|
|
|
- ${TryCompile_BINARY_DIR}
|
|
|
- SOURCES ${TryCompile_SOURCE_DIR}/pass2a.c ${TryCompile_SOURCE_DIR}/pass2b.cxx
|
|
|
- OUTPUT_VARIABLE TRY_OUT)
|
|
|
-if(NOT SHOULD_PASS)
|
|
|
- message(SEND_ERROR "should pass failed ${TRY_OUT}")
|
|
|
-endif()
|
|
|
-
|
|
|
-# try to compile two files that should not compile
|
|
|
-try_compile(SHOULD_FAIL
|
|
|
- ${TryCompile_BINARY_DIR}
|
|
|
- SOURCES ${TryCompile_SOURCE_DIR}/fail2a.c ${TryCompile_SOURCE_DIR}/fail2b.c
|
|
|
- OUTPUT_VARIABLE TRY_OUT)
|
|
|
-if(SHOULD_FAIL)
|
|
|
- message(SEND_ERROR "Should fail passed ${TRY_OUT}")
|
|
|
-endif()
|
|
|
-
|
|
|
-# try to compile a file that should compile
|
|
|
-set(_c_flags "${CMAKE_C_FLAGS}")
|
|
|
-if(WATCOM)
|
|
|
- string(APPEND CMAKE_C_FLAGS " -dTESTDEF")
|
|
|
-else()
|
|
|
- string(APPEND CMAKE_C_FLAGS " \"-DTESTDEF\"")
|
|
|
-endif()
|
|
|
-try_compile(SHOULD_PASS
|
|
|
- ${TryCompile_BINARY_DIR}
|
|
|
- ${TryCompile_SOURCE_DIR}/testdef.c
|
|
|
- OUTPUT_VARIABLE TRY_OUT)
|
|
|
-if(NOT SHOULD_PASS)
|
|
|
- message(SEND_ERROR "should pass failed ${TRY_OUT}")
|
|
|
-endif()
|
|
|
-set(CMAKE_C_FLAGS "${_c_flags}")
|
|
|
-
|
|
|
-try_compile(CMAKE_ANSI_FOR_SCOPE
|
|
|
- ${TryCompile_BINARY_DIR}
|
|
|
- ${CMAKE_ROOT}/Modules/TestForAnsiForScope.cxx OUTPUT_VARIABLE OUT)
|
|
|
-if (CMAKE_ANSI_FOR_SCOPE)
|
|
|
- message("Compiler supports ansi for")
|
|
|
-else()
|
|
|
- message("Compiler does not support ansi for scope")
|
|
|
-endif()
|
|
|
-
|
|
|
-message("use the module now")
|
|
|
-include(${CMAKE_ROOT}/Modules/TestForANSIForScope.cmake)
|
|
|
-if (CMAKE_ANSI_FOR_SCOPE)
|
|
|
- message("Compiler supports ansi for")
|
|
|
-else()
|
|
|
- message("Compiler does not support ansi for scope")
|
|
|
-endif()
|
|
|
-
|
|
|
-# try to compile a project
|
|
|
+if (APPLE)
|
|
|
+ enable_language(OBJC)
|
|
|
+ enable_language(OBJCXX)
|
|
|
+endif()
|
|
|
+
|
|
|
+
|
|
|
+# run old signature tests
|
|
|
+set(try_compile_bindir_or_SOURCES ${TryCompile_BINARY_DIR})
|
|
|
+set(try_compile_redundant_SOURCES SOURCES)
|
|
|
+set(try_compile_output_vars OUTPUT_VARIABLE TRY_OUT)
|
|
|
+set(try_compile_compile_output_var TRY_OUT)
|
|
|
+set(try_compile_run_output_var TRY_OUT)
|
|
|
+include(old_and_new_signature_tests.cmake)
|
|
|
+
|
|
|
+# run new signature tests
|
|
|
+set(try_compile_bindir_or_SOURCES SOURCES)
|
|
|
+set(try_compile_redundant_SOURCES "")
|
|
|
+set(try_compile_output_vars
|
|
|
+ COMPILE_OUTPUT_VARIABLE COMPILE_OUT
|
|
|
+ RUN_OUTPUT_VARIABLE RUN_OUTPUT)
|
|
|
+set(try_compile_compile_output_var COMPILE_OUT)
|
|
|
+set(try_compile_run_output_var RUN_OUTPUT)
|
|
|
+include(old_and_new_signature_tests.cmake)
|
|
|
+
|
|
|
+# try to compile a project (old signature)
|
|
|
message("Testing try_compile project mode")
|
|
|
try_compile(TEST_INNER
|
|
|
${TryCompile_BINARY_DIR}/CMakeFiles/Inner
|
|
@@ -142,123 +73,8 @@ try_compile(TEST_INNER
|
|
|
OUTPUT_VARIABLE output)
|
|
|
TEST_ASSERT(TEST_INNER "try_compile project mode failed:\n${output}")
|
|
|
|
|
|
-try_compile(COMPILE_DEFINITIONS_LIST_EXPANDED
|
|
|
- ${TryCompile_BINARY_DIR}
|
|
|
- ${TryCompile_SOURCE_DIR}/check_a_b.c
|
|
|
- OUTPUT_VARIABLE output
|
|
|
- COMPILE_DEFINITIONS "-DDEF_A;-DDEF_B"
|
|
|
- )
|
|
|
-if(COMPILE_DEFINITIONS_LIST_EXPANDED)
|
|
|
- message(STATUS "COMPILE_DEFINITIONS list expanded correctly")
|
|
|
-else()
|
|
|
- string(REPLACE "\n" "\n " output " ${output}")
|
|
|
- message(SEND_ERROR "COMPILE_DEFINITIONS list did not expand correctly\n${output}")
|
|
|
-endif()
|
|
|
-
|
|
|
-try_compile(SHOULD_FAIL_DUE_TO_BAD_SOURCE
|
|
|
- ${TryCompile_BINARY_DIR}
|
|
|
- ${TryCompile_SOURCE_DIR}/pass.c
|
|
|
- OUTPUT_VARIABLE output
|
|
|
- COMPILE_DEFINITIONS "bad#source.c"
|
|
|
- )
|
|
|
-if(SHOULD_FAIL_DUE_TO_BAD_SOURCE AND NOT CMAKE_GENERATOR MATCHES "Watcom WMake|NMake Makefiles")
|
|
|
- string(REPLACE "\n" "\n " output " ${output}")
|
|
|
- message(SEND_ERROR "try_compile with bad#source.c did not fail:\n${output}")
|
|
|
-elseif(NOT output MATCHES [[(bad#source\.c|bad\.c|bad')]])
|
|
|
- string(REPLACE "\n" "\n " output " ${output}")
|
|
|
- message(SEND_ERROR "try_compile with bad#source.c failed without mentioning bad source:\n${output}")
|
|
|
-else()
|
|
|
- message(STATUS "try_compile with bad#source.c correctly failed")
|
|
|
-endif()
|
|
|
-
|
|
|
add_executable(TryCompile pass.c)
|
|
|
|
|
|
-######################################
|
|
|
-
|
|
|
-# now two tests for try_run()
|
|
|
-
|
|
|
-# try to run a file that should compile and run without error
|
|
|
-# also check that OUTPUT_VARIABLE contains both the compile output
|
|
|
-# and the run output
|
|
|
-try_run(SHOULD_RUN SHOULD_COMPILE
|
|
|
- ${TryCompile_BINARY_DIR}
|
|
|
- ${TryCompile_SOURCE_DIR}/exit_success.c
|
|
|
- OUTPUT_VARIABLE TRY_OUT)
|
|
|
-if(NOT SHOULD_COMPILE)
|
|
|
- message(SEND_ERROR "exit_success failed compiling: ${TRY_OUT}")
|
|
|
-endif()
|
|
|
-if(NOT "${SHOULD_RUN}" STREQUAL "0")
|
|
|
- message(SEND_ERROR "exit_success failed running with exit code ${SHOULD_RUN}")
|
|
|
-endif()
|
|
|
-# check the compile output for the filename
|
|
|
-if(NOT "${TRY_OUT}" MATCHES "exit_success")
|
|
|
- message(SEND_ERROR " TRY_OUT didn't contain \"exit_success\": \"${TRY_OUT}\"")
|
|
|
-endif()
|
|
|
-# check the run output
|
|
|
-if(NOT "${TRY_OUT}" MATCHES "hello world")
|
|
|
- message(SEND_ERROR " TRY_OUT didn't contain \"hello world\": \"${TRY_OUT}\"")
|
|
|
-endif()
|
|
|
-
|
|
|
-try_run(ARG_TEST_RUN ARG_TEST_COMPILE
|
|
|
- ${TryCompile_BINARY_DIR}
|
|
|
- ${TryCompile_SOURCE_DIR}/expect_arg.c
|
|
|
- OUTPUT_VARIABLE TRY_OUT
|
|
|
- ARGS arg1 arg2)
|
|
|
-if(NOT ARG_TEST_COMPILE)
|
|
|
- message(SEND_ERROR "expect_arg failed compiling: ${TRY_OUT}")
|
|
|
-endif()
|
|
|
-if(NOT "${ARG_TEST_RUN}" STREQUAL "0")
|
|
|
- message(SEND_ERROR "expect_arg failed running with exit code ${ARG_TEST_RUN} ${TRY_OUT}")
|
|
|
-endif()
|
|
|
-
|
|
|
-# try to run a file that should compile and run, but return an error
|
|
|
-try_run(SHOULD_EXIT_WITH_ERROR SHOULD_COMPILE
|
|
|
- ${TryCompile_BINARY_DIR}
|
|
|
- ${TryCompile_SOURCE_DIR}/exit_with_error.c
|
|
|
- COMPILE_OUTPUT_VARIABLE COMPILE_OUTPUT
|
|
|
- RUN_OUTPUT_VARIABLE RUN_OUTPUT)
|
|
|
-
|
|
|
-if(NOT SHOULD_COMPILE)
|
|
|
- message(STATUS " exit_with_error failed compiling: ${COMPILE_OUTPUT}")
|
|
|
-endif()
|
|
|
-if("${SHOULD_EXIT_WITH_ERROR}" STREQUAL "0")
|
|
|
- message(SEND_ERROR " exit_with_error passed with exit code ${SHOULD_EXIT_WITH_ERROR}")
|
|
|
-endif()
|
|
|
-
|
|
|
-# check the compile output, it should contain the filename
|
|
|
-if(NOT "${COMPILE_OUTPUT}" MATCHES "exit_with_error")
|
|
|
- message(SEND_ERROR " COMPILE_OUT didn't contain \"exit_with_error\": \"${COMPILE_OUTPUT}\"")
|
|
|
-endif()
|
|
|
-#... but not the run time output
|
|
|
-if("${COMPILE_OUTPUT}" MATCHES "hello world")
|
|
|
- message(SEND_ERROR " COMPILE_OUT contains the run output: \"${COMPILE_OUTPUT}\"")
|
|
|
-endif()
|
|
|
-# check the run output, it should contain stdout
|
|
|
-if(NOT "${RUN_OUTPUT}" MATCHES "hello world")
|
|
|
- message(SEND_ERROR " RUN_OUTPUT didn't contain \"hello world\": \"${RUN_OUTPUT}\"")
|
|
|
-endif()
|
|
|
-
|
|
|
-# try to run a file and parse stdout and stderr separately
|
|
|
-try_run(SHOULD_EXIT_WITH_ERROR SHOULD_COMPILE
|
|
|
- ${TryCompile_BINARY_DIR}
|
|
|
- ${TryCompile_SOURCE_DIR}/stdout_and_stderr.c
|
|
|
- COMPILE_OUTPUT_VARIABLE COMPILE_OUTPUT
|
|
|
- RUN_OUTPUT_STDOUT_VARIABLE RUN_OUTPUT_STDOUT
|
|
|
- RUN_OUTPUT_STDERR_VARIABLE RUN_OUTPUT_STDERR)
|
|
|
-
|
|
|
-if(NOT SHOULD_COMPILE)
|
|
|
- message(STATUS " exit_with_error failed compiling: ${COMPILE_OUTPUT}")
|
|
|
-endif()
|
|
|
-
|
|
|
-# check the run stdout output
|
|
|
-if(NOT "${RUN_OUTPUT_STDOUT}" MATCHES "hello world")
|
|
|
- message(SEND_ERROR " RUN_OUTPUT_STDOUT didn't contain \"hello world\": \"${RUN_OUTPUT_STDOUT}\"")
|
|
|
-endif()
|
|
|
-# check the run stderr output
|
|
|
-if(NOT "${RUN_OUTPUT_STDERR}" MATCHES "error")
|
|
|
- message(SEND_ERROR " RUN_OUTPUT_STDERR didn't contain \"error\": \"${RUN_OUTPUT_STDERR}\"")
|
|
|
-endif()
|
|
|
-
|
|
|
#######################################################################
|
|
|
#
|
|
|
# also test that the CHECK_C_SOURCE_COMPILES, CHECK_CXX_SOURCE_COMPILES
|
|
@@ -377,25 +193,6 @@ if (APPLE)
|
|
|
TEST_ASSERT(SIMPLE_OBJCXX_RUN_SHOULD_WORK "CHECK_OBJCXX_SOURCE_RUNS() failed, but should have succeeded")
|
|
|
TEST_FAIL(OBJCXX_RUN_SHOULD_FAIL "CHECK_OBJCXX_SOURCE_RUNS() succeeds, but should have failed")
|
|
|
TEST_ASSERT(OBJCXX_RUN_SHOULD_WORK "CHECK_OBJCXX_SOURCE_RUNS() failed, but should have succeeded")
|
|
|
-
|
|
|
- # try to compile a file that should compile
|
|
|
- try_compile(SHOULD_PASS
|
|
|
- ${TryCompile_BINARY_DIR}
|
|
|
- ${TryCompile_SOURCE_DIR}/pass.m
|
|
|
- OUTPUT_VARIABLE TRY_OUT)
|
|
|
- if(NOT SHOULD_PASS)
|
|
|
- message(SEND_ERROR "should pass failed ${TRY_OUT}")
|
|
|
- endif()
|
|
|
-
|
|
|
- # try to compile a file that should not compile
|
|
|
- try_compile(SHOULD_FAIL
|
|
|
- ${TryCompile_BINARY_DIR}
|
|
|
- ${TryCompile_SOURCE_DIR}/fail.m
|
|
|
- OUTPUT_VARIABLE TRY_OUT)
|
|
|
- if(SHOULD_FAIL)
|
|
|
- message(SEND_ERROR "Should fail passed ${TRY_OUT}")
|
|
|
- endif()
|
|
|
-
|
|
|
endif()
|
|
|
|
|
|
#######################################################################
|