diff options
author | Brad King <brad.king@kitware.com> | 2006-08-24 09:47:52 -0400 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-08-24 09:47:52 -0400 |
commit | 93163cc1f93504976f4767480fb7d203217b0757 (patch) | |
tree | 88d6be481d6be6b4324e352a81b1f47ce0a52fa7 /Tests/SimpleInstall | |
parent | 1fec884bcbbcbb91a66443c6f37fc7cff8e606ae (diff) | |
download | cmake-93163cc1f93504976f4767480fb7d203217b0757.tar.gz |
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/SimpleInstall')
-rw-r--r-- | Tests/SimpleInstall/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Tests/SimpleInstall/CMakeLists.txt b/Tests/SimpleInstall/CMakeLists.txt index f640ef8bee..b3262bb2ae 100644 --- a/Tests/SimpleInstall/CMakeLists.txt +++ b/Tests/SimpleInstall/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 |