1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
include(RunCMake)
set(RunCMake_TEST_NO_CLEAN TRUE)
function (run_cmake_AutoExport name dir)
set(RunCMake_TEST_BINARY_DIR "${RunCMake_BINARY_DIR}/${name}-build")
# start by cleaning up because we don't clean up along the way
file(REMOVE_RECURSE "${RunCMake_TEST_BINARY_DIR}")
# configure the AutoExport test
run_cmake(${name})
unset(RunCMake_TEST_OPTIONS)
# don't run this test on Watcom or Borland make as it is not supported
if(RunCMake_GENERATOR MATCHES "Watcom WMake|Borland Makefiles|FASTBuild")
return()
endif()
if(CMAKE_CXX_COMPILER_ID STREQUAL "OrangeC")
return()
endif()
if(RunCMake_GENERATOR MATCHES "Ninja|Visual Studio" AND
CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
set(EXPORTS TRUE)
endif()
# we build debug so the say.exe will be found in Debug/say.exe for
# Visual Studio generators
if(RunCMake_GENERATOR_IS_MULTI_CONFIG)
set(INTDIR "Debug/")
endif()
# build AutoExport
run_cmake_command(${name}Build ${CMAKE_COMMAND} --build
${RunCMake_TEST_BINARY_DIR} --config Debug --clean-first)
# save the current timestamp of exports.def
if(EXPORTS)
set(EXPORTS_DEF "${RunCMake_TEST_BINARY_DIR}/${dir}/${INTDIR}exports.def")
if(NOT EXISTS "${EXPORTS_DEF}")
set(EXPORTS_DEF
"${RunCMake_TEST_BINARY_DIR}/CMakeFiles/${dir}/${INTDIR}exports.def")
endif()
file(TIMESTAMP "${EXPORTS_DEF}" timestamp)
if(NOT timestamp)
message(SEND_ERROR "Could not get timestamp for \"${EXPORTS_DEF}\"")
endif()
endif()
# run the executable that uses symbols from the dll
if(WIN32)
set(EXE_EXT ".exe")
endif()
run_cmake_command(${name}Run
${RunCMake_TEST_BINARY_DIR}/bin/${INTDIR}say${EXE_EXT})
# build AutoExport again without modification
run_cmake_command(${name}BuildAgain ${CMAKE_COMMAND} --build
${RunCMake_TEST_BINARY_DIR} --config Debug)
# compare timestamps of exports.def to make sure it has not been updated
if(EXPORTS)
file(TIMESTAMP "${EXPORTS_DEF}" timestamp_after)
if(NOT timestamp_after)
message(SEND_ERROR "Could not get timestamp for \"${EXPORTS_DEF}\"")
endif()
if (timestamp_after STREQUAL timestamp)
message(STATUS "AutoExportTimeStamp - PASSED")
else()
message(SEND_ERROR "\"${EXPORTS_DEF}\" has been updated.")
endif()
endif()
endfunction ()
run_cmake_AutoExport(AutoExport "say.dir")
if (RunCMake_GENERATOR MATCHES "(Ninja|Makefiles|Visual Studio)")
run_cmake_AutoExport(AutoExportShort ".o/0cb3d702")
endif ()
function(run_AIXExportExplicit)
set(RunCMake_TEST_BINARY_DIR "${RunCMake_BINARY_DIR}/AIXExportExplicit-build")
run_cmake(AIXExportExplicit)
set(RunCMake_TEST_NO_CLEAN 1)
set(RunCMake_TEST_OUTPUT_MERGE TRUE)
run_cmake_command(AIXExportExplicit-build ${CMAKE_COMMAND} --build . --config Debug)
endfunction()
if(CMAKE_SYSTEM_NAME STREQUAL "AIX")
run_AIXExportExplicit()
endif()
|