Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | TestDriver: fix/silence clang-tidy warnings | Daniel Pfeifer | 2017-01-24 | 1 | -15/+12 |
| | |||||
* | TestDriver: calc NumTests at compile time | Daniel Pfeifer | 2017-01-24 | 1 | -5/+4 |
| | |||||
* | TestDriver: use for loop | Daniel Pfeifer | 2017-01-24 | 1 | -3/+1 |
| | |||||
* | TestDriver: abstract CM_CAST macro | Daniel Pfeifer | 2017-01-24 | 1 | -13/+9 |
| | |||||
* | TestDriver: Revise C++ coding style using clang-format | Daniel Pfeifer | 2017-01-24 | 1 | -65/+45 |
| | |||||
* | create_test_sourcelist: Use safer strncpy instead of strcpy | Sylvain Joubert | 2016-08-25 | 1 | -4/+6 |
| | | | | | Clang-tidy advises to use a safer function in place of strcpy. This should avoid such warnings in user build using clang-tidy. | ||||
* | create_test_sourcelist: Suppress MSVC warnings in test driver (#15066) | Brad King | 2014-08-07 | 1 | -0/+4 |
| | | | | Suggested-by: Ken Moreland <kmorel@sandia.gov> | ||||
* | create_test_sourcelist: Initialize variable at declaration | Sean McBride | 2014-03-31 | 1 | -2/+1 |
| | | | | Clang -Wconditional-uninitialized warns otherwise. | ||||
* | create_test_sourcelist: Fix linkage in generated test driver code | Sean McBride | 2013-11-12 | 1 | -2/+2 |
| | | | | Mark private function/global with static linkage. | ||||
* | TestDriver.cxx.in: Untrusted array index read. | Matt McCormick | 2013-10-16 | 1 | -0/+7 |
| | | | | | | | | | | | | | | As reported by Coverity Scan, if the configured file contains a #include, Untrusted array index read The array index could be controlled by an attacker, leading to reads outside the bounds of the array. In main: Read from array at index computed using an unscrutinized value from an untrusted source (CWE-129) CID 1081283 (#1 of 1): Untrusted array index read (TAINTED_SCALAR) 25. tainted_data: Using tainted variable "testToRun" as an index into an array "cmakeGeneratedFunctionMapEntries". | ||||
* | Remove trailing whitespace from most CMake and C/C++ code | Kitware Robot | 2012-08-13 | 1 | -4/+4 |
| | | | | | | | | | | | | | | | | | Our Git commit hooks disallow modification or addition of lines with trailing whitespace. Wipe out all remnants of trailing whitespace everywhere except third-party code. Run the following shell code: git ls-files -z -- \ bootstrap doxygen.config '*.readme' \ '*.c' '*.cmake' '*.cpp' '*.cxx' \ '*.el' '*.f' '*.f90' '*.h' '*.in' '*.in.l' '*.java' \ '*.mm' '*.pike' '*.py' '*.txt' '*.vim' | egrep -z -v '^(Utilities/cm|Source/(kwsys|CursesDialog/form)/)' | egrep -z -v '^(Modules/CPack\..*\.in)' | xargs -0 sed -i 's/ \+$//' | ||||
* | COMP: Don't emit old style cast warning when configured as C++ but still ↵ | David Cole | 2008-12-09 | 1 | -2/+14 |
| | | | | allow being configured as C. Thanks to Monsieur Francois Bertel for the patch. | ||||
* | BUG: the return value of scanf should not be ignored | Amitha Perera | 2008-11-25 | 1 | -1/+5 |
| | |||||
* | make sure tests flush output | Bill Hoffman | 2004-07-16 | 1 | -0/+1 |
| | |||||
* | BUG: remove debug pop hacks, also remove duplicate call to argvc function | Bill Hoffman | 2004-05-08 | 1 | -39/+0 |
| | |||||
* | fix warning maybe | Ken Martin | 2004-05-07 | 1 | -1/+0 |
| | |||||
* | fix warning | Ken Martin | 2004-05-06 | 1 | -1/+0 |
| | |||||
* | ENH: remove unused variable | Bill Hoffman | 2004-04-30 | 1 | -1/+0 |
| | |||||
* | ENH: make test driver more flexible by using a configured file instead of ↵ | Bill Hoffman | 2004-04-28 | 1 | -0/+180 |
generating all the code. fixes bug 28 |