浏览代码

ENH: Added check for bad installation of a CVS directory to test.

Brad King 19 年之前
父节点
当前提交
a2b89129de
共有 2 个文件被更改,包括 12 次插入0 次删除
  1. 6 0
      Tests/SimpleInstall/CMakeLists.txt
  2. 6 0
      Tests/SimpleInstallS2/CMakeLists.txt

+ 6 - 0
Tests/SimpleInstall/CMakeLists.txt

@@ -89,6 +89,12 @@ IF(STAGE2)
   IF(NOT EXISTS "${CMAKE_INSTALL_PREFIX}/MyTest/share/TestSubDir/TSD.h")
     MESSAGE(FATAL_ERROR "Directory installation did not install TSD.h")
   ENDIF(NOT EXISTS "${CMAKE_INSTALL_PREFIX}/MyTest/share/TestSubDir/TSD.h")
+  IF(EXISTS "${CMAKE_INSTALL_PREFIX}/MyTest/share/TestSubDir/CVS")
+    MESSAGE(FATAL_ERROR "Directory installation installed CVS directory.")
+  ENDIF(EXISTS "${CMAKE_INSTALL_PREFIX}/MyTest/share/TestSubDir/CVS")
+  IF(EXISTS "${CMAKE_INSTALL_PREFIX}/MyTest/share/CVS")
+    MESSAGE(FATAL_ERROR "Directory installation installed CVS directory.")
+  ENDIF(EXISTS "${CMAKE_INSTALL_PREFIX}/MyTest/share/CVS")
   EXECUTE_PROCESS(
     COMMAND "${CMAKE_INSTALL_PREFIX}/MyTest/share/sample_script${BAT}"
     RESULT_VARIABLE SAMPLE_SCRIPT_RESULT

+ 6 - 0
Tests/SimpleInstallS2/CMakeLists.txt

@@ -89,6 +89,12 @@ IF(STAGE2)
   IF(NOT EXISTS "${CMAKE_INSTALL_PREFIX}/MyTest/share/TestSubDir/TSD.h")
     MESSAGE(FATAL_ERROR "Directory installation did not install TSD.h")
   ENDIF(NOT EXISTS "${CMAKE_INSTALL_PREFIX}/MyTest/share/TestSubDir/TSD.h")
+  IF(EXISTS "${CMAKE_INSTALL_PREFIX}/MyTest/share/TestSubDir/CVS")
+    MESSAGE(FATAL_ERROR "Directory installation installed CVS directory.")
+  ENDIF(EXISTS "${CMAKE_INSTALL_PREFIX}/MyTest/share/TestSubDir/CVS")
+  IF(EXISTS "${CMAKE_INSTALL_PREFIX}/MyTest/share/CVS")
+    MESSAGE(FATAL_ERROR "Directory installation installed CVS directory.")
+  ENDIF(EXISTS "${CMAKE_INSTALL_PREFIX}/MyTest/share/CVS")
   EXECUTE_PROCESS(
     COMMAND "${CMAKE_INSTALL_PREFIX}/MyTest/share/sample_script${BAT}"
     RESULT_VARIABLE SAMPLE_SCRIPT_RESULT