summaryrefslogtreecommitdiffstats
path: root/Tests/CMakeLib/testSystemTools.cxx
Commit message (Collapse)AuthorAgeFilesLines
* Fix most clang -Wextra-semi-stmt warnings in C++ filesSean McBride2019-01-151-5/+7
| | | | Suppress one in code generated by flex.
* Fix misc. typosluz.paz2018-10-031-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Found via `codespell -q 3 -I ../cmake-whitelist.txt --skip="./Utilities"` where the whitelist consists of ``` aci ans behaviour buil convertor dum earch ect emmited emmitted helpfull iff isnt ith lowercased mose nd nknown nto objext ot pathes pevents splitted substract superceded supercedes te tim todays uint upto whitespaces ```
* iwyu: Fix more findingsDaniel Pfeifer2016-11-281-1/+6
|
* Simplify CMake per-source license noticesBrad King2016-09-271-11/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | Per-source copyright/license notice headers that spell out copyright holder names and years are hard to maintain and often out-of-date or plain wrong. Precise contributor information is already maintained automatically by the version control tool. Ultimately it is the receiver of a file who is responsible for determining its licensing status, and per-source notices are merely a convenience. Therefore it is simpler and more accurate for each source to have a generic notice of the license name and references to more detailed information on copyright holders and full license terms. Our `Copyright.txt` file now contains a list of Contributors whose names appeared source-level copyright notices. It also references version control history for more precise information. Therefore we no longer need to spell out the list of Contributors in each source file notice. Replace CMake per-source copyright/license notice headers with a short description of the license and links to `Copyright.txt` and online information available from "https://cmake.org/licensing". The online URL also handles cases of modules being copied out of our source into other projects, so we can drop our notices about replacing links with full license text. Run the `Utilities/Scripts/filter-notices.bash` script to perform the majority of the replacements mechanically. Manually fix up shebang lines and trailing newlines in a few files. Manually update the notices in a few files that the script does not handle.
* Tests: Add test for our strverscmp implementationPierluigi Taddei2016-09-141-4/+68
| | | | | Cover typical examples and the ordering defined by the `strverscmp(3)` man page.
* surround macro arguments with parenthesesDaniel Pfeifer2016-09-051-2/+2
|
* Merge topic 'readability-named-parameter'Brad King2016-08-171-1/+1
|\ | | | | | | | | e7b842e1 Make sure unnused parameters are /*named*/
| * Make sure unnused parameters are /*named*/Daniel Pfeifer2016-08-161-1/+1
| |
* | fix a batch of include-what-you-use violationsDaniel Pfeifer2016-08-161-0/+3
|/
* Revise C++ coding style using clang-formatKitware Robot2016-05-161-8/+7
| | | | | | | | | | | | | Run the `Utilities/Scripts/clang-format.bash` script to update all our C++ code to a new style defined by `.clang-format`. Use `clang-format` version 3.8. * If you reached this commit for a line in `git blame`, re-run the blame operation starting at the parent of this commit to see older history for the content. * See the parent commit for instructions to rebase a change across this style transition commit.
* complex: Move cmSystemTools::UpperCase test to CMakeLibTestsBrad King2011-12-231-0/+33
This test belongs in the CMakeLibTests test driver executable which correctly links to CMakeLib.