summaryrefslogtreecommitdiff
path: root/Tests/CTestTestCrash
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2009-12-02 09:16:29 -0500
committerBrad King <brad.king@kitware.com>2009-12-02 09:16:29 -0500
commited55b1b8d217a943a4c5b6d332e32d7d8913a49e (patch)
tree8fc451bd9da748fdde29c51d792e6271798d5ed9 /Tests/CTestTestCrash
parentcdc9ef3b5a49e0e7596f1314ca1baa4d43103154 (diff)
downloadcmake-ed55b1b8d217a943a4c5b6d332e32d7d8913a49e.tar.gz
Remove unused code from CTest test suite
We remove from Tests/CTestTest*/CMakeLists.txt some historical cruft that is no longer used by the test suite.
Diffstat (limited to 'Tests/CTestTestCrash')
-rw-r--r--Tests/CTestTestCrash/CMakeLists.txt13
1 files changed, 1 insertions, 12 deletions
diff --git a/Tests/CTestTestCrash/CMakeLists.txt b/Tests/CTestTestCrash/CMakeLists.txt
index 5c8cc0b3a9..669be526da 100644
--- a/Tests/CTestTestCrash/CMakeLists.txt
+++ b/Tests/CTestTestCrash/CMakeLists.txt
@@ -1,19 +1,8 @@
cmake_minimum_required (VERSION 2.6)
PROJECT(CTestTestCrash)
-
-SET(DART_ROOT "" CACHE STRING "" FORCE)
-ENABLE_TESTING()
-INCLUDE (${CMAKE_ROOT}/Modules/Dart.cmake)
-
-GET_FILENAME_COMPONENT(CTEST_COMMAND "${CMAKE_COMMAND}" PATH)
-SET(CTEST_COMMAND "${CTEST_COMMAND}/ctest")
+INCLUDE(CTest)
ADD_EXECUTABLE (Crash crash.cxx)
TARGET_LINK_LIBRARIES (NoBuild ${EXTRA_LIBS})
-ENABLE_TESTING ()
-
ADD_TEST (TestCrash Crash)
-
-INCLUDE (CTest)
-