summaryrefslogtreecommitdiffstats
path: root/Tests/CMakeCommands
Commit message (Collapse)AuthorAgeFilesLines
* Use generalized RunCMake test infrastrucure for build_command testBrad King2012-03-123-154/+0
| | | | | | | The CMakeCommands.build_command test performs output/error checking so move it over to RunCMake to re-use the generalized infrastrucure. This is the only test left using Tests/CMakeCommands/CMakeLists.txt so remove it.
* Use generalized RunCMake test infrastrucure for find_package testBrad King2012-03-1231-341/+0
|
* find_package: Test that REQUIRED aborts processing correctlyBrad King2012-03-0712-3/+26
| | | | | Verify that the command produces a FATAL_ERROR if and only if the missing package is REQUIRED.
* find_package: Test error and warning messages in failure casesBrad King2012-02-2831-0/+318
| | | | | | | | Add a "CMakeCommands.find_package" test to run CMake on a bunch of cases in which find_package fails. Check that the process return code and warning/error messages are as expected. Record expected test output in corresponding files for reference by the check. These files will also serve as a reference for the message text in each case.
* Add infrastructure for CMakeCommands testsBrad King2012-02-282-0/+10
| | | | | Generalize the build_command test framework as a macro to add the test. Process the CMakeCommands subdirectory explicitly.
* GenerateExportHeader test: add newlines before end of fileRolf Eike Beer2012-01-171-1/+1
|
* target_link_libraries: Add LINK_(PUBLIC|PRIVATE) optionsStephen Kelly2011-11-228-0/+127
| | | | | Makes it possible to specify the link dependencies and link interfaces in one command without repetition.
* Fix issue #2336 - honor the -C arg to ctest. Honor it for all stages of ↵David Cole2009-12-042-0/+144
running -D dashboards from the command line and running ctest_configure, ctest_build and ctest_test commands in -S scripts. Also, allow a script to change it by setting the CTEST_CONFIGURATION_TYPE variable: allows for multiple configuration build/test cycles within one script. Add a new signature for the cmake command build_command that accepts CONFIGURATION as one argument. The original build_command signature is still there, but now marked as deprecated in the documentation. Of course... also add CTestConfig tests to verify that -C is honored for -D dashboards and -S scripts.