summaryrefslogtreecommitdiffstats
path: root/Tests/Contracts/vtk542
Commit message (Collapse)AuthorAgeFilesLines
* Tests/Contracts: Update test for VTK release branchZack Galbreath2013-12-052-31/+0
| | | | | | The plan is to reinstate the VTK contracts test so that CMake & VTK devs will both be made aware when a change in CMake causes build problems for VTK.
* Convert CMake-language commands to lower caseKitware Robot2012-08-131-1/+1
| | | | | | | | | | | | | | | | | Ancient CMake versions required upper-case commands. Later command names became case-insensitive. Now the preferred style is lower-case. Run the following shell code: cmake --help-command-list | grep -v "cmake version" | while read c; do echo 's/\b'"$(echo $c | tr '[:lower:]' '[:upper:]')"'\(\s*\)(/'"$c"'\1(/g' done >convert.sed && git ls-files -z -- bootstrap '*.cmake' '*.cmake.in' '*CMakeLists.txt' | egrep -z -v '^(Utilities/cm|Source/kwsys/)' | xargs -0 sed -i -f convert.sed && rm convert.sed
* Fix contract test so it is not hard coded to the vtk542 test.Bill Hoffman2010-09-211-0/+1
|
* Add a "Contract" test for VTK. The test downloads and builds VTK.Bill Hoffman2010-09-211-0/+30
The idea is that we can make sure that CMake is staying backwards compatible by testing projects against CMake as the changes are made in CMake. Because these tests will take a long time to run, they will not be enabled by default. Instead, they will be enabled by putting a cache variable into CMake.