From 0526bb249a823c05c086c619e9ed119cf5277809 Mon Sep 17 00:00:00 2001 From: michael Date: Fri, 5 Nov 2021 23:22:48 +0100 Subject: [PATCH] Added new cmake test targets --- CoreFlows/examples/CMakeLists.txt | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/CoreFlows/examples/CMakeLists.txt b/CoreFlows/examples/CMakeLists.txt index 6f0f818..a88789b 100755 --- a/CoreFlows/examples/CMakeLists.txt +++ b/CoreFlows/examples/CMakeLists.txt @@ -16,7 +16,12 @@ if (COREFLOWS_WITH_PYTHON ) endif (COREFLOWS_WITH_PYTHON ) -add_custom_target (tests_CoreFlows COMMAND ctest -O testsCoreFlows.log) +add_custom_target (CoreFlows COMMAND ctest -O testsCoreFlows.log) + +add_custom_target (cpp COMMAND ctest -R .exe)# may be replace ctest -R with ctest -L +add_custom_target (mpi COMMAND ctest -R Procs)# may be replace ctest -R with ctest -L +add_custom_target (eos COMMAND ctest -R EOS)# may be replace ctest -R with ctest -L +add_custom_target (coupled COMMAND ctest -R Coupled)# may be replace ctest -R with ctest -L add_custom_target (SinglePhase COMMAND ctest -R SinglePhase)# may be replace ctest -R with ctest -L add_custom_target (DriftModel COMMAND ctest -R DriftModel) # may be replace ctest -R with ctest -L -- 2.39.2