summaryrefslogtreecommitdiffstats
path: root/Tests/CMakeLists.txt
Commit message (Collapse)AuthorAgeFilesLines
* ENH: Add test_clean target to wipe out testsBrad King2008-08-191-0/+58
| | | | | | We frequently need to wipe out all the CMake test build directories in order to run tests from scratch. This change adds a test_clean custom target to remove all these directories for out-of-source builds.
* BUG: fix endif()Alexander Neundorf2008-08-061-1/+1
| | | | Alex
* ENH: add simple tests to test that the extra generators don't crashAlexander Neundorf2008-08-061-0/+49
| | | | Alex
* ENH: fix build with Xcode project was missingBill Hoffman2008-07-311-1/+2
|
* ENH: Add test for the new CPack BundleGenerator. Thanks to Tim Shead for the ↵David Cole2008-07-301-0/+13
| | | | patch. See issue #7170 for more details.
* ENH: add get_test_property to bootstrap so bootstrap builds test the same as ↵Bill Hoffman2008-07-071-10/+0
| | | | non-bootstrap builds
* BUG: Replace non-bootstrap command with macroBrad King2008-07-031-0/+9
| | | | | - The GET_TEST_PROPERTY command does not exist during bootstrap. - Instead of lots of conditionals, replace it with a macro.
* ENH: Remove condition on use of CMake 2.4 commandsBrad King2008-07-031-39/+30
| | | | | | - Commands SET_TESTS_PROPERTIES and GET_TEST_PROPERTY exist in CMake 2.4, which is now required. - Therefore we need not check before using them.
* COMP: Don't set properties on a non-existing testBrad King2008-07-031-1/+1
| | | | | - Test SubProject-Stage2 is conditionally created. - Set properties on it only if it exists.
* ENH: add initial ctest -j featureBill Hoffman2008-07-031-0/+9
|
* BUG: Avoid running the new CPackComponents test on Windows unless the NSIS ↵David Cole2008-06-191-2/+22
| | | | installer is available.
* ENH: Add patch for feature request #6847 - CPack components for NSIS and ↵David Cole2008-06-171-1/+44
| | | | PackageMaker installers. Thanks to Doug Gregor for all the hard work involved with implementing this patch! Also added new test CPackComponents that is conditionally executed only when NSIS or PackageMaker installer builders are available.
* ENH: try turning this on againBill Hoffman2008-06-171-1/+1
|
* ENH: turn this off until it passes on all systemsBill Hoffman2008-06-171-1/+1
|
* ENH: add test which executes all FindXXX.cmake modulesAlexander Neundorf2008-06-161-0/+1
| | | | Alex
* BUG: Allow timeouts larger than 1500 for tests that may take longer than 25 ↵David Cole2008-04-191-4/+18
| | | | minutes on really slow/busy machines. bootstrap has been timing out on tiamat, a very old machine, this should help it...
* ENH: Combine all dependency* tests into one Dependency test. Add more ↵Brad King2008-02-061-54/+3
| | | | difficult test cases.
* ENH: disable test for vs 70 as devenv randomly segfaults when building the ↵Ken Martin2008-02-011-2/+2
| | | | sub-project
* BUG: Fix commit 1.41 of Tests/CMakeLists.txt to place fake target before ↵Brad King2008-02-011-1/+1
| | | | --version flag instead of after.
* ENH: fix for bug 3218 dependant projects are written out automatically if ↵Bill Hoffman2008-01-301-2/+34
| | | | they are in the project. Also fix bug 5829, remove hard coded CMAKE_CONFIGURATION_TYPES from vs 7 generator
* ENH: Added ExportImport test to test new export/import features.Brad King2008-01-281-0/+1
|
* ENH: add testing for return and break commandsKen Martin2008-01-231-0/+1
|
* ENH: Added RuntimePath test to make sure rpath gets correct order.Brad King2008-01-221-0/+3
|
* BUG: Do not get in infinite loop when checking make tool version in cmake ↵Brad King2008-01-211-1/+1
| | | | build tree.
* ENH: Create COMPILE_DEFINITIONS property for targets and source files. ↵Brad King2008-01-141-0/+1
| | | | Create <config>_COMPILE_DEFINITIONS property as per-configuration version. Add Preprocess test to test the feature. Document limitations on Xcode and VS6 generators.
* ENH: add functions and raise scopeKen Martin2007-12-031-0/+1
|
* BUG: try to fix configure error on dashboardBill Hoffman2007-11-251-6/+6
|
* ENH: add support for the Syllable OS (http://www.syllable.org)Alexander Neundorf2007-11-241-33/+54
| | | | | | | | | | | major issues: -access() doesn't return false for an empty string (#ifdefed in cmake) -dlopen() doesn't return 0 on failure (#ifdefed in cmake and fixed now in Syllable) -the kwsys and Bootstrap tests fail with timeout due to the fact that I'm doing all that in qemu, which is quite slow -RPATH is now supported, so without modifying the test adapting DLL_PATH in Syllable is required for the tests to succeed -the Plugin test fails with an undefined reference to example_exe_function() in example_mod_1, it seems this isn't supported under Syllable Alex
* ENH: Add new Tutorial steps. Diff between Step5 and Step6 shows how to add a ↵David Cole2007-11-081-2/+2
| | | | cpack driven installer to your project. Diff between Step6 and Step7 shows how to add ctest dashboard scripting capability.
* ENH: add doc test for strict buildsKen Martin2007-11-061-1/+5
|
* ENH: remove findqt3 from cmake's cmakelist filesBill Hoffman2007-11-021-19/+8
|
* ENH: Finish up the Framework creation code restructuring. Frameworks build ↵David Cole2007-10-101-2/+13
| | | | and install now. More work needed on the packaging step. See Tests/Framework for example use.
* COMP: Rename the executables for the SimpleInstall tests so that the ↵David Cole2007-10-011-2/+2
| | | | executable files that run during the test do not have the word install in their file names. This allows running the tests on Windows Vista without admin privileges and without adding a manifest containing the asInvoker requestedExecutionLevel element.
* ENH: increase timeoutBill Hoffman2007-09-251-1/+1
|
* ENH: VV make too much data for the dashboardBill Hoffman2007-09-201-1/+1
|
* ENH: Restore shorter timeout for SimpleInstall-Stage2.Brad King2007-09-201-6/+0
|
* ENH: fix failing test when valgrind is onBill Hoffman2007-09-191-1/+1
|
* ENH: Re-enable packaging part of SimpleInstall-Stage2 test on Apple. Give ↵Brad King2007-09-191-0/+6
| | | | it a long timeout to see what is going on.
* ENH: increase timeout for long testBill Hoffman2007-09-181-1/+1
|
* ENH: add test that builds a nightly windows cmake binaryBill Hoffman2007-09-101-0/+15
|
* ENH: add the source_group() demo to the testsAlexander Neundorf2007-08-271-0/+1
| | | | Alex
* ENH: Add InstallNameFixupPath to support installing built frameworks on the ↵David Cole2007-08-241-1/+1
| | | | Mac. Change Application to Applications in the BundleTest. Also correct small typo (tcl->Tcl) noted in bug 4572.
* STYLE: mark these variables as advanced, they are only used for testingAlexander Neundorf2007-08-091-0/+2
| | | | | | whether the tests should be added or not Alex
* COMP: lets see if this sets the timeout back to 5400Alexander Neundorf2007-08-091-2/+2
| | | | Alex
* COMP: change the order of the tests, so maybe the timeout worksAlexander Neundorf2007-08-081-6/+5
| | | | Alex
* ENH: also specify the C++ compiler for mingwAlexander Neundorf2007-08-081-4/+6
| | | | Alex
* BUG: the test for chicken should be named Chicken, not plplotAlexander Neundorf2007-08-071-1/+1
| | | | Alex
* ENH: add plplot and Chicken Scheme build testsAlexander Neundorf2007-08-061-0/+10
| | | | Alex
* ENH: add a simple assembler testAlexander Neundorf2007-07-051-0/+1
| | | | Alex
* COMP: fix tests where the building cmake doesn't have GET_TEST_PROPERTYAlexander Neundorf2007-06-271-2/+2
| | | | Alex