diff options
author | Brad King <brad.king@kitware.com> | 2015-09-02 20:09:22 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-09-02 20:11:29 (GMT) |
commit | 18d7f8fbfbf9a03ff0742c26a349a2030cecb9d5 (patch) | |
tree | a6ddd54a4106f616f49a785f95bb1e593cea9e02 /Tests/RunCMake/set_property | |
parent | 9e21b01a4d4781cdcfb8990bdf72a11c83da3887 (diff) | |
download | CMake-18d7f8fbfbf9a03ff0742c26a349a2030cecb9d5.zip CMake-18d7f8fbfbf9a03ff0742c26a349a2030cecb9d5.tar.gz CMake-18d7f8fbfbf9a03ff0742c26a349a2030cecb9d5.tar.bz2 |
Tests: Move LINK_SEARCH_{START,END}_STATIC case to dedicated test
The test case added to RunCMake.set_property by commit 675ef165 (Allow
LINK_SEARCH_{START,END}_STATIC props to have default values, 2015-08-07)
is not a test of the set_property command and so belongs in its own test
case. Create a new RunCMake.LinkStatic test to cover cases related to
static linking.
While at it, simplify the LINK_SEARCH_STATIC test case to enable only C.
Diffstat (limited to 'Tests/RunCMake/set_property')
-rw-r--r-- | Tests/RunCMake/set_property/LINK_SEARCH_STATIC.cmake | 73 | ||||
-rw-r--r-- | Tests/RunCMake/set_property/LinkStatic.c | 5 | ||||
-rw-r--r-- | Tests/RunCMake/set_property/RunCMakeTest.cmake | 1 |
3 files changed, 0 insertions, 79 deletions
diff --git a/Tests/RunCMake/set_property/LINK_SEARCH_STATIC.cmake b/Tests/RunCMake/set_property/LINK_SEARCH_STATIC.cmake deleted file mode 100644 index 70d2fee..0000000 --- a/Tests/RunCMake/set_property/LINK_SEARCH_STATIC.cmake +++ /dev/null @@ -1,73 +0,0 @@ -project(LinkSearchStatic) - -set(CMAKE_LINK_SEARCH_START_STATIC ON) -add_executable(LinkSearchStartStaticInit1 LinkStatic.c) -get_target_property(LSSS LinkSearchStartStaticInit1 - LINK_SEARCH_START_STATIC) -if(NOT LSSS) - message(FATAL_ERROR "Failed to correctly initialize LINK_SEARCH_START_STATIC") -endif() -unset(CMAKE_LINK_SEARCH_START_STATIC) - -add_executable(LinkSearchStartStaticSet1 LinkStatic.c) -set_target_properties(LinkSearchStartStaticSet1 PROPERTIES - LINK_SEARCH_START_STATIC ON) -get_target_property(LSSS LinkSearchStartStaticSet1 - LINK_SEARCH_START_STATIC) -if(NOT LSSS) - message(FATAL_ERROR "Failed to correctly set LINK_SEARCH_START_STATIC") -endif() - -set(CMAKE_LINK_SEARCH_START_STATIC OFF) -add_executable(LinkSearchStartStaticInit2 LinkStatic.c) -get_target_property(LSSS LinkSearchStartStaticInit2 - LINK_SEARCH_START_STATIC) -if(LSSS) - message(FATAL_ERROR "Failed to correctly initialize LINK_SEARCH_START_STATIC") -endif() -unset(CMAKE_LINK_SEARCH_START_STATIC) - -add_executable(LinkSearchStartStaticSet2 LinkStatic.c) -set_target_properties(LinkSearchStartStaticSet2 PROPERTIES - LINK_SEARCH_START_STATIC OFF) -get_target_property(LSSS LinkSearchStartStaticSet2 - LINK_SEARCH_START_STATIC) -if(LSSS) - message(FATAL_ERROR "Failed to correctly set LINK_SEARCH_START_STATIC") -endif() - -set(CMAKE_LINK_SEARCH_END_STATIC ON) -add_executable(LinkSearchEndStaticInit1 LinkStatic.c) -get_target_property(LSES LinkSearchEndStaticInit1 - LINK_SEARCH_END_STATIC) -if(NOT LSES) - message(FATAL_ERROR "Failed to correctly initialize LINK_SEARCH_END_STATIC") -endif() -unset(CMAKE_LINK_SEARCH_END_STATIC) - -add_executable(LinkSearchEndStaticSet1 LinkStatic.c) -set_target_properties(LinkSearchEndStaticSet1 PROPERTIES - LINK_SEARCH_END_STATIC ON) -get_target_property(LSSS LinkSearchEndStaticSet1 - LINK_SEARCH_END_STATIC) -if(NOT LSSS) - message(FATAL_ERROR "Failed to correctly set LINK_SEARCH_END_STATIC") -endif() - -set(CMAKE_LINK_SEARCH_END_STATIC OFF) -add_executable(LinkSearchEndStaticInit2 LinkStatic.c) -get_target_property(LSES LinkSearchEndStaticInit2 - LINK_SEARCH_END_STATIC) -if(LSES) - message(FATAL_ERROR "Failed to correctly initialize LINK_SEARCH_END_STATIC") -endif() -unset(CMAKE_LINK_SEARCH_END_STATIC) - -add_executable(LinkSearchEndStaticSet2 LinkStatic.c) -set_target_properties(LinkSearchEndStaticSet2 PROPERTIES - LINK_SEARCH_END_STATIC ON) -get_target_property(LSSS LinkSearchEndStaticSet2 - LINK_SEARCH_END_STATIC) -if(NOT LSSS) - message(FATAL_ERROR "Failed to correctly set LINK_SEARCH_END_STATIC") -endif() diff --git a/Tests/RunCMake/set_property/LinkStatic.c b/Tests/RunCMake/set_property/LinkStatic.c deleted file mode 100644 index 3600977..0000000 --- a/Tests/RunCMake/set_property/LinkStatic.c +++ /dev/null @@ -1,5 +0,0 @@ -#include <math.h> -int main(void) -{ - return (int)sin(0); -} diff --git a/Tests/RunCMake/set_property/RunCMakeTest.cmake b/Tests/RunCMake/set_property/RunCMakeTest.cmake index ada8804..54e63f7 100644 --- a/Tests/RunCMake/set_property/RunCMakeTest.cmake +++ b/Tests/RunCMake/set_property/RunCMakeTest.cmake @@ -1,4 +1,3 @@ include(RunCMake) run_cmake(LINK_LIBRARIES) -run_cmake(LINK_SEARCH_STATIC) |