diff options
author | Brad King <brad.king@kitware.com> | 2006-08-24 13:47:52 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-08-24 13:47:52 (GMT) |
commit | 93163cc1f93504976f4767480fb7d203217b0757 (patch) | |
tree | 88d6be481d6be6b4324e352a81b1f47ce0a52fa7 /Tests/SimpleInstallS2 | |
parent | 1fec884bcbbcbb91a66443c6f37fc7cff8e606ae (diff) | |
download | CMake-93163cc1f93504976f4767480fb7d203217b0757.zip CMake-93163cc1f93504976f4767480fb7d203217b0757.tar.gz CMake-93163cc1f93504976f4767480fb7d203217b0757.tar.bz2 |
ENH: Added code to remove any bad installations of CVS directories before running the test so that one failure does not need manual adjustment to get it to pass again.
Diffstat (limited to 'Tests/SimpleInstallS2')
-rw-r--r-- | Tests/SimpleInstallS2/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Tests/SimpleInstallS2/CMakeLists.txt b/Tests/SimpleInstallS2/CMakeLists.txt index f640ef8..b3262bb 100644 --- a/Tests/SimpleInstallS2/CMakeLists.txt +++ b/Tests/SimpleInstallS2/CMakeLists.txt @@ -166,6 +166,8 @@ ELSE(STAGE2) ) # Test directory installation. + FILE(REMOVE_RECURSE "${CMAKE_INSTALL_PREFIX}/MyTest/share/CVS") + FILE(REMOVE_RECURSE "${CMAKE_INSTALL_PREFIX}/MyTest/share/TestSubDir/CVS") INSTALL( DIRECTORY TestSubDir scripts/ DESTINATION MyTest/share PATTERN "CVS" EXCLUDE |