summaryrefslogtreecommitdiffstats
path: root/Tests/ExternalProjectUpdate
Commit message (Collapse)AuthorAgeFilesLines
* Tests: Add generator toolset supportBrad King2013-02-071-1/+1
| | | | | Propagate CMAKE_GENERATOR_TOOLSET through the test hierarchy so that all tests can build with the selected generator toolset, if any.
* ExternalProjectUpdateTest: Only support Git 1.6.5 and greater.Matt McCormick2012-11-131-0/+18
|
* ExternalProject: Verify when a fetch occurs during update test.Matt McCormick2012-11-131-10/+26
| | | | | | | The performance feature of only performing a git fetch when needed during the ExternalProject update step is verified during the test. A fetch is identified by removing the FETCH_HEAD file and checking for its reincarnation.
* ExternalProject: Make sure the ExternalProjectUpdate setup is available.Matt McCormick2012-11-131-1/+1
| | | | | This prepares the numberous tests that occur in the ExternalProjectUpdate test. The tests were passing previously because a fresh build was not performed.
* ExternalProject: Always do a git fetch for a remote ref.Matt McCormick2012-11-131-1/+3
| | | | | Remote git refs always require a git fetch, because the remote may move around where the ref points.
* ExternalProject: Add tests for UPDATE_COMMAND.Matt McCormick2012-11-133-0/+152
Tests are added for UPDATE_COMMAND to ensure it is working properly. Testing infrastructure is added along with tests for Git, but tests for other version control systems could easily be added in the future.