Merge topic 'fix--D-command-line-parsing'
aee7e4a0
cmCacheManager: parse -D flags more strictly368e8de4
Tests: test -D parsing on the command line
This commit is contained in:
commit
2e953c7657
|
@ -139,7 +139,7 @@ bool cmCacheManager::ParseEntry(const std::string& entry,
|
|||
{
|
||||
// input line is: key:type=value
|
||||
static cmsys::RegularExpression reg(
|
||||
"^([^:]*):([^=]*)=(.*[^\r\t ]|[\r\t ]*)[\r\t ]*$");
|
||||
"^([^=:]*):([^=]*)=(.*[^\r\t ]|[\r\t ]*)[\r\t ]*$");
|
||||
// input line is: "key":type=value
|
||||
static cmsys::RegularExpression regQuoted(
|
||||
"^\"([^\"]*)\":([^=]*)=(.*[^\r\t ]|[\r\t ]*)[\r\t ]*$");
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
cmake_minimum_required(VERSION 3.0)
|
||||
project(${RunCMake_TEST} NONE)
|
||||
include(${RunCMake_TEST}.cmake)
|
|
@ -0,0 +1 @@
|
|||
^-->-DBAR:BOOL=BAZ<--$
|
|
@ -0,0 +1 @@
|
|||
message("-->${FOO}<--")
|
|
@ -0,0 +1 @@
|
|||
^-->-DBAR:BOOL=BAZ<--$
|
|
@ -0,0 +1 @@
|
|||
message("-->${FOO}<--")
|
|
@ -43,3 +43,11 @@ run_cmake_command(E_sleep-bad-arg2 ${CMAKE_COMMAND} -E sleep 1 -1)
|
|||
run_cmake_command(E_sleep-one-tenth ${CMAKE_COMMAND} -E sleep 0.1)
|
||||
|
||||
run_cmake_command(P_directory ${CMAKE_COMMAND} -P ${RunCMake_SOURCE_DIR})
|
||||
|
||||
set(RunCMake_TEST_OPTIONS
|
||||
"-DFOO=-DBAR:BOOL=BAZ")
|
||||
run_cmake(D_nested_cache)
|
||||
|
||||
set(RunCMake_TEST_OPTIONS
|
||||
"-DFOO:STRING=-DBAR:BOOL=BAZ")
|
||||
run_cmake(D_typed_nested_cache)
|
||||
|
|
Loading…
Reference in New Issue