diff options
author | Bernhard Burgermeister <bburgerm@googlemail.com> | 2017-05-04 15:57:20 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-05-09 15:34:42 (GMT) |
commit | 5e0e03d953c03e1703708f4f579d903990edecb9 (patch) | |
tree | a3d5b73b4bf1bce7f97689d222adf81e356d9925 /Tests/RunCMake/Ninja/RunCMakeTest.cmake | |
parent | a83250880ad511d92d96bfd860873b9c79c0f462 (diff) | |
download | CMake-5e0e03d953c03e1703708f4f579d903990edecb9.zip CMake-5e0e03d953c03e1703708f4f579d903990edecb9.tar.gz CMake-5e0e03d953c03e1703708f4f579d903990edecb9.tar.bz2 |
Ninja: Fix command concatenation on Windows
Put commands that contain `||` into brackets to avoid early abort of
execution by `cmd.exe` because `||` has higher precedence than `&&` in
`cmd.exe`.
Add test to check for command execution after `||` as part of a
parameter and as command separator.
Fixes: #16850
Diffstat (limited to 'Tests/RunCMake/Ninja/RunCMakeTest.cmake')
-rw-r--r-- | Tests/RunCMake/Ninja/RunCMakeTest.cmake | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Tests/RunCMake/Ninja/RunCMakeTest.cmake b/Tests/RunCMake/Ninja/RunCMakeTest.cmake index 8c3bc20..b3720fb 100644 --- a/Tests/RunCMake/Ninja/RunCMakeTest.cmake +++ b/Tests/RunCMake/Ninja/RunCMakeTest.cmake @@ -40,6 +40,16 @@ run_CMP0058(NEW-by) run_cmake(CustomCommandDepfile) +function(run_CommandConcat) + set(RunCMake_TEST_BINARY_DIR ${RunCMake_BINARY_DIR}/CommandConcat-build) + set(RunCMake_TEST_NO_CLEAN 1) + file(REMOVE_RECURSE "${RunCMake_TEST_BINARY_DIR}") + file(MAKE_DIRECTORY "${RunCMake_TEST_BINARY_DIR}") + run_cmake(CommandConcat) + run_cmake_command(CommandConcat-build ${CMAKE_COMMAND} --build .) +endfunction() +run_CommandConcat() + function(run_SubDir) # Use a single build tree for a few tests without cleaning. set(RunCMake_TEST_BINARY_DIR ${RunCMake_BINARY_DIR}/SubDir-build) |