From 5152bf563922da0d493cb769bca8861e25a5791a Mon Sep 17 00:00:00 2001 From: Brad King Date: Mon, 30 Nov 2009 11:16:13 -0500 Subject: [PATCH] Cleanup CMakeBuildTest in test_clean target The test_clean target is supposed to remove all test build directories. We add the build directory for CMakeBuildTest because it was missing. --- Tests/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/Tests/CMakeLists.txt b/Tests/CMakeLists.txt index b51630da86..3fe02b2453 100644 --- a/Tests/CMakeLists.txt +++ b/Tests/CMakeLists.txt @@ -162,6 +162,7 @@ IF(BUILD_TESTING) "${CMake_BINARY_DIR}/Tests/CMakeBuildTest.cmake" @ONLY) ADD_TEST(CMakeBuildTest ${CMAKE_CMAKE_COMMAND} -P "${CMake_BINARY_DIR}/Tests/CMakeBuildTest.cmake") + LIST(APPEND TEST_BUILD_DIRS ${CMAKE_BUILD_TEST_BINARY_DIR}) # If we are running right now with a UnixMakefiles based generator, # build the "Simple" test with the ExtraGenerators, if available