diff --git a/test/k4FWCoreTest/CMakeLists.txt b/test/k4FWCoreTest/CMakeLists.txt index ba381b7e..eef2720b 100644 --- a/test/k4FWCoreTest/CMakeLists.txt +++ b/test/k4FWCoreTest/CMakeLists.txt @@ -115,12 +115,12 @@ add_test_with_env(Testk4runHelpOnly options/TestArgs.py --help PROPERTIES PASS_R add_test_with_env(ExampleFunctionalProducer options/runExampleFunctionalProducer.py) -add_test_with_env(ExampleFunctionalConsumer options/runExampleFunctionalConsumer.py PROPERTIES DEPENDS "ExampleFunctionalProducer") +add_test_with_env(ExampleFunctionalConsumer options/runExampleFunctionalConsumer.py PROPERTIES DEPENDS ExampleFunctionalProducer) # A dependency on the ExampleFunctionalConsumer is added to make sure they don't # run at the same time add_test_with_env(ExampleFunctionalTransformer options/runExampleFunctionalTransformer.py PROPERTIES DEPENDS ExampleFunctionalProducer) add_test_with_env(ExampleFunctionalProducerMultiple options/runExampleFunctionalProducerMultiple.py) -add_test_with_env(ExampleFunctionalConsumerMultiple options/runExampleFunctionalConsumerMultiple.py PROPERTIES DEPENDS "ExampleFunctionalProducerMultiple") +add_test_with_env(ExampleFunctionalConsumerMultiple options/runExampleFunctionalConsumerMultiple.py PROPERTIES DEPENDS ExampleFunctionalProducerMultiple) add_test_with_env(ExampleFunctionalTransformerMultiple options/runExampleFunctionalTransformerMultiple.py PROPERTIES DEPENDS ExampleFunctionalProducerMultiple) add_test_with_env(FunctionalChain options/runFunctionalChain.py) -add_test_with_env(FunctionalMix options/runFunctionalMix.py PROPERTIES DEPENDS "ExampleFunctionalProducerMultiple") +add_test_with_env(FunctionalMix options/runFunctionalMix.py PROPERTIES DEPENDS ExampleFunctionalProducerMultiple)