summaryrefslogtreecommitdiffstats
path: root/Tests/SubDirSpaces
Commit message (Collapse)AuthorAgeFilesLines
* replace remove and remove_directory with rm in testsJohnny Jazeix2019-11-131-1/+1
|
* Remove now-unused code once used on IRIXBrad King2019-01-111-1/+1
| | | | | We dropped support for IRIX as a host platform long ago. Remove some leftover code.
* Revise C++ coding style using clang-format-6.0Kitware Robot2018-06-012-8/+8
| | | | | | | | | | | | Run the `clang-format.bash` script to update all our C and C++ code to a new style defined by `.clang-format`. Use `clang-format` version 6.0. * 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.
* Revise C++ coding style using clang-formatKitware Robot2016-05-162-36/+22
| | | | | | | | | | | | | 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.
* Use CMAKE_SYSTEM_NAME instead of CMAKE_SYSTEM where sufficientRolf Eike Beer2014-04-141-1/+1
|
* Remove CMake-language block-end command argumentsKitware Robot2012-08-131-14/+14
| | | | | | | | | | | | | | | | | Ancient versions of CMake required else(), endif(), and similar block termination commands to have arguments matching the command starting the block. This is no longer the preferred style. Run the following shell code: for c in else endif endforeach endfunction endmacro endwhile; do echo 's/\b'"$c"'\(\s*\)(.\+)/'"$c"'\1()/' done >convert.sed && git ls-files -z -- bootstrap '*.cmake' '*.cmake.in' '*CMakeLists.txt' | egrep -z -v '^(Utilities/cm|Source/kwsys/)' | egrep -z -v 'Tests/CMakeTests/While-Endwhile-' | xargs -0 sed -i -f convert.sed && rm convert.sed
* Convert CMake-language commands to lower caseKitware Robot2012-08-136-51/+51
| | | | | | | | | | | | | | | | | Ancient CMake versions required upper-case commands. Later command names became case-insensitive. Now the preferred style is lower-case. Run the following shell code: cmake --help-command-list | grep -v "cmake version" | while read c; do echo 's/\b'"$(echo $c | tr '[:lower:]' '[:upper:]')"'\(\s*\)(/'"$c"'\1(/g' done >convert.sed && git ls-files -z -- bootstrap '*.cmake' '*.cmake.in' '*CMakeLists.txt' | egrep -z -v '^(Utilities/cm|Source/kwsys/)' | xargs -0 sed -i -f convert.sed && rm convert.sed
* Remove trailing whitespace from most CMake and C/C++ codeKitware Robot2012-08-131-5/+5
| | | | | | | | | | | | | | | | | 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/ \+$//'
* Disable SubDirSpaces parens with GNU Make 3.82 (#11654)Brad King2011-01-111-1/+9
| | | | | | | | | GNU Make 3.82 incorrectly parses make dependencies involving parentheses in path names. See related upstream issue: http://savannah.gnu.org/bugs/?30612 Skip testing the ()-named subdirectory.
* ENH: preclean some warningsKen Martin2008-03-253-0/+3
|
* ENH: watcom wmake can not handle () in the path with cd commandBill Hoffman2007-02-272-2/+21
|
* COMP: Disable rpath with spaces on some systems.Brad King2007-02-261-0/+6
|
* ENH: add a commentBill Hoffman2007-02-221-0/+1
|
* ENH: show make results on the dashboardBill Hoffman2007-02-221-0/+1
|
* ENH: fix parens in the path with spaces in the pathBill Hoffman2007-02-224-2/+9
|
* ENH: make the test really test targets with spacesKen Martin2007-02-191-1/+1
|
* ENH: added used sources with a path that has spacesKen Martin2007-02-192-0/+50
|
* ENH: new test for spaces in the tree structureKen Martin2007-02-1919-0/+201