diff options
author | Christian Pfeiffer <cpfeiffer@live.de> | 2017-04-26 18:26:47 (GMT) |
---|---|---|
committer | Christian Pfeiffer <cpfeiffer@live.de> | 2017-04-26 18:26:47 (GMT) |
commit | 81841426fc12864008999893c11e555df06df292 (patch) | |
tree | 2d7f1c48f8e75c2eb1ea64a87ffb061367cb9469 /Tests/RunCMake/separate_arguments/WindowsCommand.cmake | |
parent | 41b84b2220ef147d76f5b1291601c069397f854b (diff) | |
download | CMake-81841426fc12864008999893c11e555df06df292.zip CMake-81841426fc12864008999893c11e555df06df292.tar.gz CMake-81841426fc12864008999893c11e555df06df292.tar.bz2 |
separgs: Migrate tests to RunCMake tests
Diffstat (limited to 'Tests/RunCMake/separate_arguments/WindowsCommand.cmake')
-rw-r--r-- | Tests/RunCMake/separate_arguments/WindowsCommand.cmake | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Tests/RunCMake/separate_arguments/WindowsCommand.cmake b/Tests/RunCMake/separate_arguments/WindowsCommand.cmake new file mode 100644 index 0000000..86aa14a --- /dev/null +++ b/Tests/RunCMake/separate_arguments/WindowsCommand.cmake @@ -0,0 +1,8 @@ +set(windows_cmd "a \"b c\" 'd e' \";\" \\ \"c:\\windows\\path\\\\\" \\\"") +set(windows_exp "a;b c;'d;e';\;;\\;c:\\windows\\path\\;\"") +separate_arguments(windows_out WINDOWS_COMMAND "${windows_cmd}") + +if(NOT "${windows_out}" STREQUAL "${windows_exp}") + message(FATAL_ERROR "separate_arguments windows-style failed. " + "Expected\n [${windows_exp}]\nbut got\n [${windows_out}]\n") +endif() |