Skip to content

Commit 13eed37

Browse files
Fix quoting in test command
Otherwise single quotes get incorrectly stripped off.
1 parent 1f18602 commit 13eed37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

regression/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ set(test_pl_path "${CMAKE_CURRENT_SOURCE_DIR}/test.pl")
33
macro(add_test_pl_profile name cmdline flag profile)
44
add_test(
55
NAME "${name}-${profile}"
6-
COMMAND ${test_pl_path} -e -p -c ${cmdline} ${flag} ${ARGN}
6+
COMMAND ${test_pl_path} -e -p -c "${cmdline}" ${flag} ${ARGN}
77
WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}"
88
)
99
set_tests_properties("${name}-${profile}" PROPERTIES

0 commit comments

Comments
 (0)