summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/CheckCompilerFlag/CheckCXXCompilerFlag.cmake
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2022-10-06 13:23:17 (GMT)
committerBrad King <brad.king@kitware.com>2022-10-06 14:29:42 (GMT)
commit64ac01451dad389bb4ca00019a38fbb8bd68308e (patch)
treebedeaae5eaba60b243d4c085eee33abb668a20ef /Tests/RunCMake/CheckCompilerFlag/CheckCXXCompilerFlag.cmake
parent2133cf2c8e575bfff000041505208e28bcdfd4a3 (diff)
downloadCMake-64ac01451dad389bb4ca00019a38fbb8bd68308e.zip
CMake-64ac01451dad389bb4ca00019a38fbb8bd68308e.tar.gz
CMake-64ac01451dad389bb4ca00019a38fbb8bd68308e.tar.bz2
Tests: Clarify RunCMake.Check* case names
Cases for `CheckSource{Compiles,Runs}` and `Check{Compiler,Linker}Flag` cover the modules with the language as a parameter, not the language-specific modules.
Diffstat (limited to 'Tests/RunCMake/CheckCompilerFlag/CheckCXXCompilerFlag.cmake')
-rw-r--r--Tests/RunCMake/CheckCompilerFlag/CheckCXXCompilerFlag.cmake26
1 files changed, 0 insertions, 26 deletions
diff --git a/Tests/RunCMake/CheckCompilerFlag/CheckCXXCompilerFlag.cmake b/Tests/RunCMake/CheckCompilerFlag/CheckCXXCompilerFlag.cmake
deleted file mode 100644
index dec31ec..0000000
--- a/Tests/RunCMake/CheckCompilerFlag/CheckCXXCompilerFlag.cmake
+++ /dev/null
@@ -1,26 +0,0 @@
-
-enable_language (CXX)
-include(CheckCompilerFlag)
-
-set(CXX 1) # test that this is tolerated
-
-# test that the check uses an isolated locale
-set(_env_LC_ALL "${LC_ALL}")
-set(ENV{LC_ALL} "BAD")
-
-check_compiler_flag(CXX "-_this_is_not_a_flag_" SHOULD_FAIL)
-if(SHOULD_FAIL)
- message(SEND_ERROR "invalid CXX compile flag didn't fail.")
-endif()
-
-if(CMAKE_CXX_COMPILER_ID MATCHES "GNU|LCC|Clang" AND NOT "x${CMAKE_CXX_SIMULATE_ID}" STREQUAL "xMSVC")
- check_compiler_flag(CXX "-x c++" SHOULD_WORK)
- if(NOT SHOULD_WORK)
- message(SEND_ERROR "${CMAKE_CXX_COMPILER_ID} compiler flag '-x c++' check failed")
- endif()
-endif()
-
-if(NOT "$ENV{LC_ALL}" STREQUAL "BAD")
- message(SEND_ERROR "ENV{LC_ALL} was not preserved by check_compiler_flag")
-endif()
-set(ENV{LC_ALL} ${_env_LC_ALL})