You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.2 KiB
29 lines
1.2 KiB
set(expected_compile_commands
|
|
[==[^\[
|
|
{
|
|
"directory": "[^
|
|
]*(/Tests/RunCMake/NinjaMultiConfig/CompileCommands-build|\\\\Tests\\\\RunCMake\\\\NinjaMultiConfig\\\\CompileCommands-build)",
|
|
"command": "[^
|
|
]*Debug[^
|
|
]*",
|
|
"file": "[^
|
|
]*(/Tests/RunCMake/NinjaMultiConfig/main\.c|\\\\Tests\\\\RunCMake\\\\NinjaMultiConfig\\\\main\.c)"
|
|
},
|
|
{
|
|
"directory": "[^
|
|
]*(/Tests/RunCMake/NinjaMultiConfig/CompileCommands-build|\\\\Tests\\\\RunCMake\\\\NinjaMultiConfig\\\\CompileCommands-build)",
|
|
"command": "[^
|
|
]*Release[^
|
|
]*",
|
|
"file": "[^
|
|
]*(/Tests/RunCMake/NinjaMultiConfig/main\.c|\\\\Tests\\\\RunCMake\\\\NinjaMultiConfig\\\\main\.c)"
|
|
}
|
|
]$]==])
|
|
|
|
file(READ "${RunCMake_TEST_BINARY_DIR}/compile_commands.json" actual_compile_commands)
|
|
if(NOT actual_compile_commands MATCHES "${expected_compile_commands}")
|
|
string(REPLACE "\n" "\n " expected_compile_commands_formatted "${expected_compile_commands}")
|
|
string(REPLACE "\n" "\n " actual_compile_commands_formatted "${actual_compile_commands}")
|
|
string(APPEND RunCMake_TEST_FAILED "Expected compile_commands.json to match:\n ${expected_compile_commands_formatted}\nActual compile_commands.json:\n ${actual_compile_commands_formatted}\n")
|
|
endif()
|