Tests: Move CTestTestMemcheck tools into Tests/CMakeLib
The dummy memcheck tools we build for the RunCMake.CTestMemcheck tests require CMakeLib, so put them in a Tests/CMakeLib/PseudoMemcheck directory.
This commit is contained in:
parent
1651dc9668
commit
7ca6bdf035
|
@ -48,3 +48,5 @@ if(TEST_CompileCommandOutput)
|
||||||
add_executable(runcompilecommands run_compile_commands.cxx)
|
add_executable(runcompilecommands run_compile_commands.cxx)
|
||||||
target_link_libraries(runcompilecommands CMakeLib)
|
target_link_libraries(runcompilecommands CMakeLib)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
add_subdirectory(PseudoMemcheck)
|
||||||
|
|
|
@ -23,7 +23,7 @@ target_link_libraries(memcheck_fail CMakeLib)
|
||||||
# Binaries that are used as memchecker that do not write the expected
|
# Binaries that are used as memchecker that do not write the expected
|
||||||
# output file. Need to be in their own subdirectory as they have the
|
# output file. Need to be in their own subdirectory as they have the
|
||||||
# same filenames.
|
# same filenames.
|
||||||
add_subdirectory(NoLogDummyChecker)
|
add_subdirectory(NoLog)
|
||||||
|
|
||||||
# Xcode 2.x forgets to create the output directory before linking
|
# Xcode 2.x forgets to create the output directory before linking
|
||||||
# the individual architectures.
|
# the individual architectures.
|
|
@ -110,10 +110,6 @@ if(BUILD_TESTING)
|
||||||
|
|
||||||
add_subdirectory(FindPackageModeMakefileTest)
|
add_subdirectory(FindPackageModeMakefileTest)
|
||||||
|
|
||||||
if(NOT CMake_TEST_EXTERNAL_CMAKE)
|
|
||||||
add_subdirectory(CTestTestMemcheck)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
# Collect a list of all test build directories.
|
# Collect a list of all test build directories.
|
||||||
set(TEST_BUILD_DIRS)
|
set(TEST_BUILD_DIRS)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue