From 02fa0847655c832a2161b568e90163617e4c58de Mon Sep 17 00:00:00 2001 From: Wouter Deconinck Date: Fri, 9 Feb 2024 22:15:00 -0600 Subject: [PATCH] fix: correct quoting of DDTest command line json --- DDTest/CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/DDTest/CMakeLists.txt b/DDTest/CMakeLists.txt index f3424d10d..bc4d0b13d 100644 --- a/DDTest/CMakeLists.txt +++ b/DDTest/CMakeLists.txt @@ -151,9 +151,9 @@ if (DD4HEP_USE_GEANT4) --steeringFile ${CMAKE_CURRENT_SOURCE_DIR}/python/userActionsSteeringFile.PY --action.event "Geant4TestEventAction/EventActionCLI1" --action.step "Geant4TestStepAction/StepActionCLI1,Geant4TestStepAction/StepActionCLI2" - --action.step '[ "Geant4TestStepAction/StepActionCLI2", "Geant4TestStepAction/StepActionCLI3" ]' - --action.stack '{ "name" : "Geant4TestStackAction/StackActionCLI1" , "parameter" : { "Property_int" : 10 } }' - --action.stack '[ { "name" : "Geant4TestStackAction/StackActionCLI2" , "parameter" : { "Property_int" : 10 } } ]' + --action.step '\[ \"Geant4TestStepAction/StepActionCLI3\" , \"Geant4TestStepAction/StepActionCLI4\" \]' + --action.stack '\{ \"name\" : \"Geant4TestStackAction/StackActionCLI1\" , \"parameter\" : \{ \"Property_int\" : 10 \} \}' + --action.stack '\[ \{ \"name\" : \"Geant4TestStackAction/StackActionCLI2\" , \"parameter\" : { \"Property_int\" : 10 \} \} \]' ) endif()