summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge topic 'dev/add_test-working-directory'Brad King2011-01-042-23/+7
|\ | | | | | | | | 6529d7f Pass the expected value as the first argument
| * Pass the expected value as the first argumentBen Boeckel2011-01-032-23/+7
| | | | | | | | | | When the path has regular expression special characters, the PASS_REGULAR_EXPRESSION value can fail to compile.
* | Merge topic 'make-install-test-serial'Brad King2011-01-041-0/+3
|\ \ | | | | | | | | | | | | bce24e1 Avoid running CMake.Install test simultaneously with other tests
| * | Avoid running CMake.Install test simultaneously with other testsDavid Cole2010-12-311-0/+3
| | |
* | | Merge topic 'suppress-warnings'Brad King2011-01-041-0/+1
|\ \ \ | | | | | | | | | | | | | | | | d11f439 Suppress erroneous warnings from Intel compiler
| * | | Suppress erroneous warnings from Intel compilerDavid Cole2010-12-311-0/+1
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Googling for "warning #980: wrong number of actual arguments to intrinsic function" yields: http://software.intel.com/en-us/articles/cdiag980/ http://software.intel.com/en-us/articles/diagnostic-980-wrong-number-of-actual-arguments-to-intrinsic-function/ Since the compiler is at fault for issuing the warnings incorrectly, simply suppress them from CMake dashboard results.
* | | Merge topic 'compiler-id-literal-const'Brad King2011-01-043-4/+4
|\ \ \ | | | | | | | | | | | | | | | | dbc79bd Fix constness in compiler id detection
| * | | Fix constness in compiler id detectionBrad King2010-12-293-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since commit 70c2dc8a (Make compiler id detection more robust, 2008-03-10) we store compiler identification strings in test binaries using the form char* info = "info"; Use the const-correct char const* info = "info"; form instead. This allows the C++ compiler identification to work with "-Werror -Wall" or equivalent flags if the compiler would warn about const-to-non-const conversion.
* | | | Merge topic 'recognize-TI-DSP'Brad King2011-01-043-0/+9
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | f1392dc Recognize the Texas Instruments DSP compiler (#11645)
| * | | | Recognize the Texas Instruments DSP compiler (#11645)Wojciech Migda2010-12-283-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The TI DSP compiler predefines "__TI_COMPILER_VERSION__". Use this to identify the C and C++ compilers. For assembler language the C compiler executable is used: $ cl6x -h TMS320C6x C/C++ Compiler v6.1.11 Tools Copyright (c) 1996-2009 Texas Instruments Incorporated Use this command-line option and output to recognize the assembler.
* | | | | Merge topic 'FindBoostTypos'Brad King2011-01-041-184/+189
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 5103fe5 Lowercase all function names and improve consistency 97c8f77 Fix spelling BOOST_LIBRARYDIR message. Add error for common misspellings.
| * | | | | Lowercase all function names and improve consistencyPhilip Lowman2010-12-281-168/+168
| | | | | |
| * | | | | Fix spelling BOOST_LIBRARYDIR message. Add error for common misspellings.Philip Lowman2010-12-281-16/+21
| | | | | |
* | | | | | Merge topic 'add-trilinos-contract-test'Brad King2011-01-046-0/+264
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 8113621 Establish pass criteria for the Trilinos contract test. 7348561 Use m prefix in shorttag value to indicate "md5 of tarball" c8ac930 Add contract test for Trilinos 10.6.1 snapshot.
| * | | | | | Establish pass criteria for the Trilinos contract test.David Cole2010-12-286-6/+71
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add a ValidateBuild.cmake script that runs after the Trilinos dashboard run is complete. In that script, look for some expected Trilinos executable files. Run the basic Teuchos unit tests executable and expect it to return 0 for no errors. Also, patch the main CMakeLists.txt file to get rid of new warnings from CMake when variables passed in on the command line go un-referenced in the CMakeLists processing.
| * | | | | | Use m prefix in shorttag value to indicate "md5 of tarball"David Cole2010-12-281-0/+1
| | | | | | |
| * | | | | | Add contract test for Trilinos 10.6.1 snapshot.David Cole2010-11-095-0/+198
| | | | | | |
* | | | | | | Merge topic 'fix-warning-char-string-constant'Brad King2011-01-042-3/+5
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 0bb22cf Avoid passing string literal to char* type
| * | | | | | | Avoid passing string literal to char* typeBrad King2010-12-282-3/+5
| | | | | | | |
* | | | | | | | Merge topic 'add_support_for_windres'Brad King2011-01-0411-5/+41
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 971692c Build enable_language command during bootstrap 960ace1 Add testing for windows resources for mingw/msys/cygwin and remove for watcom. 060d6e8 Add support for windres to cygwin. b2f308c Add support for windows resources with mingw/msys.
| * | | | | | | | Build enable_language command during bootstrapBrad King2010-12-302-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Commit 060d6e88 (Add support for windres to cygwin, 2010-12-23) and commit b2f308c8 (Add support for windows resources with mingw/msys, 2010-12-22) introduced enable_language(RC) for the first time in a platform file processed by a bootstrap-built cmake.
| * | | | | | | | Add testing for windows resources for mingw/msys/cygwin and remove for watcom.Bill Hoffman2010-12-281-1/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit should test windows resources on all platforms where they are supported now.
| * | | | | | | | Add support for windres to cygwin.Bill Hoffman2010-12-232-1/+3
| | | | | | | | |
| * | | | | | | | Add support for windows resources with mingw/msys.Bill Hoffman2010-12-236-1/+24
| | | | | | | | |
* | | | | | | | | Merge topic 'add_preprocessor_def_vs2010_resources'Brad King2011-01-046-2/+30
|\ \ \ \ \ \ \ \ \ | |/ / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 8c7b19d Only run resource test for MSVC compilers. 753e208 Disable incremental testing for this test, it crashes vs9 linker. 16e7d4b Add flags to resource builds on vs 2010 with a test.
| * | | | | | | | Only run resource test for MSVC compilers.Bill Hoffman2010-12-221-11/+3
| | | | | | | | |
| * | | | | | | | Disable incremental testing for this test, it crashes vs9 linker.Bill Hoffman2010-12-221-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | On windows 7 64 bit, the vs9 linker will crash when linking an application with a resource in it.
| * | | | | | | | Add flags to resource builds on vs 2010 with a test.Bill Hoffman2010-12-216-2/+35
| | | | | | | | |
* | | | | | | | | Merge topic 'add_resource_support_to_intel'Brad King2011-01-041-0/+4
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 90b0f2c Enable resource building with the intel compiler on windows.
| * | | | | | | | | Enable resource building with the intel compiler on windows.Bill Hoffman2011-01-031-0/+4
| | | | | | | | | |
* | | | | | | | | | KWSys Nightly Date StampKWSys Robot2011-01-041-1/+1
|/ / / / / / / / /
* | | | | | | | | KWSys: Remove useless include <sys/procfs.h> (#11648)Brad King2011-01-031-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The header was included only under "#ifdef __linux", but not all Linux distributions provide the header. SystemInformation uses no symbols from this header, so do not include it.
* | | | | | | | | KWSys Nightly Date StampKWSys Robot2011-01-031-1/+1
| | | | | | | | |
* | | | | | | | | KWSys Nightly Date StampKWSys Robot2011-01-021-1/+1
| | | | | | | | |
* | | | | | | | | KWSys Nightly Date StampKWSys Robot2011-01-011-3/+3
| | | | | | | | |
* | | | | | | | | KWSys Nightly Date StampKWSys Robot2010-12-311-1/+1
| | | | | | | | |
* | | | | | | | | KWSys Nightly Date StampKWSys Robot2010-12-301-1/+1
| |_|_|_|_|_|/ / |/| | | | | | |
* | | | | | | | KWSys Nightly Date StampKWSys Robot2010-12-291-1/+1
| | | | | | | |
* | | | | | | | Merge topic 'bug-11518-dbus-macro'Brad King2010-12-281-1/+9
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | d640d54 allow absolute paths for dbus interface.
| * | | | | | | | allow absolute paths for dbus interface.Clinton Stimpson2010-12-231-1/+9
| | | | | | | | |
* | | | | | | | | Merge topic 'FindBLAS_FindLAPACK'Brad King2010-12-282-13/+31
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 51253da FindLAPACK works with C/C++ only projects (issue 0009976) e64b5da fix for Fortran-only projects 1279bd7 find ACML fixes
| * | | | | | | | | FindLAPACK works with C/C++ only projects (issue 0009976)Alexey Ozeritsky2010-12-271-11/+11
| | | | | | | | | |
| * | | | | | | | | fix for Fortran-only projectsAlexey Ozeritsky2010-12-271-1/+9
| | | | | | | | | |
| * | | | | | | | | find ACML fixesAlexey Ozeritsky2010-12-271-1/+11
| | | | | | | | | |
* | | | | | | | | | Merge topic 'FixCrashInEclipseGenerator'Brad King2010-12-281-1/+1
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | d18c8d6 Fix crash in Eclipse generator with empty project (#11616)
| * | | | | | | | | | Fix crash in Eclipse generator with empty project (#11616)Alex Neundorf2010-12-211-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If there was no language at all enabled, CMAKE_BUILD_TYPE was empty, which was not expected, and made the generator crash. Alex
* | | | | | | | | | | Merge topic 'mac-headerpad_max_install_names-passthru'Brad King2010-12-282-6/+6
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | e498527 Pass Mac linker flag through all compilers with -Wl,
| * | | | | | | | | | | Pass Mac linker flag through all compilers with -Wl,Brad King2010-12-222-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The Mac linker defines flag -headerpad_max_install_names but not all front-ends recognize the flag and pass it through (many did in the past, such as the Apple port of GCC). Use the -Wl, option prefix to tell front-ends to pass it through without trying to interpret it.
* | | | | | | | | | | | Merge topic 'dev/add_test-working-directory'Brad King2010-12-287-2/+162
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 667a90a Fix sentence break in add_test documentation 96309fc Make TestsWorkingDirectory test a C file a4a5e37 Use iostream to make Borland happy cfe53cd Fully specify the path to old-signature add_test 017d4e9 Group adding tests with its properties 561cc33 Only test the default cwd with Makefiles d87bae7 Simplify the _default_cwd derivation 992c74f Use --><-- markers to denote the path 5249551 Flip slashes around on Windows 0a014da Add ctype.h include for toupper() af12f83 Fix header includes for C++ and Visual Studio 5597aa2 Rename the project to match the test 9bf4165 Add tests for WORKING_DIRECTORY arg to add_test 42de5d0 Add WORKING_DIRECTORY argument to add_test 7679f9f Rename WorkingDirectory test d95f817 Add the WORKING_DIRECTORY property to tests
| * | | | | | | | | | | | Fix sentence break in add_test documentationBrad King2010-12-211-1/+1
| | |_|_|_|_|_|_|_|_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Commit 42de5d02 (Add WORKING_DIRECTORY argument to add_test, 2010-12-16) added a new sentence to a paragraph without separating it by " " from the previous sentence. Add the missing spaces.