From 0067b9017754be2ac090b7c33ec6f5e20d0fdf3a Mon Sep 17 00:00:00 2001 From: Andreas Hessenthaler Date: Wed, 28 Feb 2018 15:22:05 +0100 Subject: [PATCH] added test description files for all tests currently present in functional_test_frame_work/ --- active_contraction.cmake | 3 +++ burgers_dynamic.cmake | 3 +++ burgers_generalised.cmake | 3 +++ burgers_static.cmake | 3 +++ cantilever.cmake | 4 ++++ cantilever_growth.cmake | 3 +++ cellml_growth_law.cmake | 3 +++ cellml_split_reaction_diffusion_equation.cmake | 3 +++ darcy_static.cmake | 3 +++ diffusion_equation.cmake | 3 +++ diffusion_equation_with_linear_source.cmake | 3 +++ dof_constraints.cmake | 3 +++ fsi_2d_obstacle.cmake | 3 +++ fsi_tube_flow.cmake | 3 +++ hermite_prolate_spheroid_mechanics.cmake | 3 +++ homogeneous_pipe_axial_extension.cmake | 3 +++ laplace_equation.cmake | 4 ++++ left_ventricle_inflation.cmake | 3 +++ linear_tet_mechanics.cmake | 3 +++ membrane_extension_2d_space.cmake | 3 +++ monodomain_2D_HH.cmake | 3 +++ monodomain_2D_vary_parameters_spatially.cmake | 3 +++ mooney_rivlin_cellml.cmake | 3 +++ navierstokes_coupled1d0d.cmake | 3 +++ navierstokes_liddrivencavity.cmake | 3 +++ navierstokes_poiseuilleflow.cmake | 3 +++ nonlinear_poisson_equation.cmake | 3 +++ poiseuille_static.cmake | 3 +++ simple_shear.cmake | 3 +++ static_advection_diffusion_equation.cmake | 3 +++ stokes_ale.cmake | 3 +++ stokes_dynamic.cmake | 3 +++ stokes_static.cmake | 3 +++ uniaxial_extension.cmake | 4 ++++ 34 files changed, 105 insertions(+) create mode 100644 active_contraction.cmake create mode 100644 burgers_dynamic.cmake create mode 100644 burgers_generalised.cmake create mode 100644 burgers_static.cmake create mode 100644 cantilever.cmake create mode 100644 cantilever_growth.cmake create mode 100644 cellml_growth_law.cmake create mode 100644 cellml_split_reaction_diffusion_equation.cmake create mode 100644 darcy_static.cmake create mode 100644 diffusion_equation.cmake create mode 100644 diffusion_equation_with_linear_source.cmake create mode 100644 dof_constraints.cmake create mode 100644 fsi_2d_obstacle.cmake create mode 100644 fsi_tube_flow.cmake create mode 100644 hermite_prolate_spheroid_mechanics.cmake create mode 100644 homogeneous_pipe_axial_extension.cmake create mode 100644 laplace_equation.cmake create mode 100644 left_ventricle_inflation.cmake create mode 100644 linear_tet_mechanics.cmake create mode 100644 membrane_extension_2d_space.cmake create mode 100644 monodomain_2D_HH.cmake create mode 100644 monodomain_2D_vary_parameters_spatially.cmake create mode 100644 mooney_rivlin_cellml.cmake create mode 100644 navierstokes_coupled1d0d.cmake create mode 100644 navierstokes_liddrivencavity.cmake create mode 100644 navierstokes_poiseuilleflow.cmake create mode 100644 nonlinear_poisson_equation.cmake create mode 100644 poiseuille_static.cmake create mode 100644 simple_shear.cmake create mode 100644 static_advection_diffusion_equation.cmake create mode 100644 stokes_ale.cmake create mode 100644 stokes_dynamic.cmake create mode 100644 stokes_static.cmake create mode 100644 uniaxial_extension.cmake diff --git a/active_contraction.cmake b/active_contraction.cmake new file mode 100644 index 0000000..491ef3c --- /dev/null +++ b/active_contraction.cmake @@ -0,0 +1,3 @@ +set(TEST_GIT_REPO https://github.com/OpenCMISS-Examples/active_contraction.git) +set(TEST_BRANCH develop) +set(TEST_TARGETS active_contraction) diff --git a/burgers_dynamic.cmake b/burgers_dynamic.cmake new file mode 100644 index 0000000..40ecda5 --- /dev/null +++ b/burgers_dynamic.cmake @@ -0,0 +1,3 @@ +set(TEST_GIT_REPO https://github.com/OpenCMISS-Examples/burgers_dynamic.git) +set(TEST_BRANCH develop) +set(TEST_TARGETS burgers_dynamic_fortran) diff --git a/burgers_generalised.cmake b/burgers_generalised.cmake new file mode 100644 index 0000000..022ff44 --- /dev/null +++ b/burgers_generalised.cmake @@ -0,0 +1,3 @@ +set(TEST_GIT_REPO https://github.com/OpenCMISS-Examples/burgers_generalised.git) +set(TEST_BRANCH develop) +set(TEST_TARGETS burgers_generalised_fortran) diff --git a/burgers_static.cmake b/burgers_static.cmake new file mode 100644 index 0000000..96945a7 --- /dev/null +++ b/burgers_static.cmake @@ -0,0 +1,3 @@ +set(TEST_GIT_REPO https://github.com/OpenCMISS-Examples/burgers_static.git) +set(TEST_BRANCH develop) +set(TEST_TARGETS burgers_static_fortran) diff --git a/cantilever.cmake b/cantilever.cmake new file mode 100644 index 0000000..763fe85 --- /dev/null +++ b/cantilever.cmake @@ -0,0 +1,4 @@ +set(TEST_GIT_REPO https://github.com/OpenCMISS-Examples/cantilever.git) +set(TEST_BRANCH develop) +set(TEST_TARGETS cantilever) +set(PYTEST_TARGETS src/python/cantilever.py) diff --git a/cantilever_growth.cmake b/cantilever_growth.cmake new file mode 100644 index 0000000..e0e6db2 --- /dev/null +++ b/cantilever_growth.cmake @@ -0,0 +1,3 @@ +set(TEST_GIT_REPO https://github.com/OpenCMISS-Examples/cantilever_growth.git) +set(TEST_BRANCH develop) +set(PYTEST_TARGETS src/python/cantilever_growth.py) diff --git a/cellml_growth_law.cmake b/cellml_growth_law.cmake new file mode 100644 index 0000000..1f9c4d1 --- /dev/null +++ b/cellml_growth_law.cmake @@ -0,0 +1,3 @@ +set(TEST_GIT_REPO https://github.com/OpenCMISS-Examples/cellml_growth_law.git) +set(TEST_BRANCH develop) +set(PYTEST_TARGETS src/python/cellml_growth_law.py) diff --git a/cellml_split_reaction_diffusion_equation.cmake b/cellml_split_reaction_diffusion_equation.cmake new file mode 100644 index 0000000..690232f --- /dev/null +++ b/cellml_split_reaction_diffusion_equation.cmake @@ -0,0 +1,3 @@ +set(TEST_GIT_REPO https://github.com/OpenCMISS-Examples/cellml_split_reaction_diffusion_equation.git) +set(TEST_BRANCH develop) +set(TEST_TARGETS cellml_split_reaction_diffusion_equation) diff --git a/darcy_static.cmake b/darcy_static.cmake new file mode 100644 index 0000000..e8d6dc1 --- /dev/null +++ b/darcy_static.cmake @@ -0,0 +1,3 @@ +set(TEST_GIT_REPO https://github.com/OpenCMISS-Examples/darcy_static.git) +set(TEST_BRANCH develop) +set(TEST_TARGETS darcy_static_fortran) diff --git a/diffusion_equation.cmake b/diffusion_equation.cmake new file mode 100644 index 0000000..a4ff162 --- /dev/null +++ b/diffusion_equation.cmake @@ -0,0 +1,3 @@ +set(TEST_GIT_REPO https://github.com/OpenCMISS-Examples/diffusion_equation.git) +set(TEST_BRANCH develop) +set(TEST_TARGETS diffusion_equation) diff --git a/diffusion_equation_with_linear_source.cmake b/diffusion_equation_with_linear_source.cmake new file mode 100644 index 0000000..7119f2e --- /dev/null +++ b/diffusion_equation_with_linear_source.cmake @@ -0,0 +1,3 @@ +set(TEST_GIT_REPO https://github.com/OpenCMISS-Examples/diffusion_equation_with_linear_source.git) +set(TEST_BRANCH develop) +set(TEST_TARGETS diffusion_equation_with_linear_source) diff --git a/dof_constraints.cmake b/dof_constraints.cmake new file mode 100644 index 0000000..25e7ac2 --- /dev/null +++ b/dof_constraints.cmake @@ -0,0 +1,3 @@ +set(TEST_GIT_REPO https://github.com/OpenCMISS-Examples/dof_constraints.git) +set(TEST_BRANCH develop) +set(PYTEST_TARGETS src/python/dof_constraints.py) diff --git a/fsi_2d_obstacle.cmake b/fsi_2d_obstacle.cmake new file mode 100644 index 0000000..7734593 --- /dev/null +++ b/fsi_2d_obstacle.cmake @@ -0,0 +1,3 @@ +set(TEST_GIT_REPO https://github.com/OpenCMISS-Examples/fsi_2d_obstacle.git) +set(TEST_BRANCH develop) +set(PYTEST_TARGETS src/python/fsi_2d_obstacle.py) diff --git a/fsi_tube_flow.cmake b/fsi_tube_flow.cmake new file mode 100644 index 0000000..2685944 --- /dev/null +++ b/fsi_tube_flow.cmake @@ -0,0 +1,3 @@ +set(TEST_GIT_REPO https://github.com/OpenCMISS-Examples/fsi_tube_flow.git) +set(TEST_BRANCH develop) +set(PYTEST_TARGETS src/python/fsi_tube_flow.py) diff --git a/hermite_prolate_spheroid_mechanics.cmake b/hermite_prolate_spheroid_mechanics.cmake new file mode 100644 index 0000000..2931794 --- /dev/null +++ b/hermite_prolate_spheroid_mechanics.cmake @@ -0,0 +1,3 @@ +set(TEST_GIT_REPO https://github.com/OpenCMISS-Examples/hermite_prolate_spheroid_mechanics.git) +set(TEST_BRANCH develop) +set(PYTEST_TARGETS src/python/hermite_prolate_spheroid_mechanics.py) diff --git a/homogeneous_pipe_axial_extension.cmake b/homogeneous_pipe_axial_extension.cmake new file mode 100644 index 0000000..237e364 --- /dev/null +++ b/homogeneous_pipe_axial_extension.cmake @@ -0,0 +1,3 @@ +set(TEST_GIT_REPO https://github.com/OpenCMISS-Examples/homogeneous_pipe_axial_extension.git) +set(TEST_BRANCH develop) +set(PYTEST_TARGETS src/python/homogeneous_pipe_axial_extension.py) diff --git a/laplace_equation.cmake b/laplace_equation.cmake new file mode 100644 index 0000000..33e2dd4 --- /dev/null +++ b/laplace_equation.cmake @@ -0,0 +1,4 @@ +set(TEST_GIT_REPO https://github.com/OpenCMISS-Examples/laplace_equation.git) +set(TEST_BRANCH develop) +set(TEST_TARGETS laplace_equation) +set(PYTEST_TARGETS src/python/laplace_equation.py) diff --git a/left_ventricle_inflation.cmake b/left_ventricle_inflation.cmake new file mode 100644 index 0000000..82d7c59 --- /dev/null +++ b/left_ventricle_inflation.cmake @@ -0,0 +1,3 @@ +set(TEST_GIT_REPO https://github.com/OpenCMISS-Examples/left_ventricle_inflation.git) +set(TEST_BRANCH develop) +set(PYTEST_TARGETS src/python/left_ventricle_inflation.py) diff --git a/linear_tet_mechanics.cmake b/linear_tet_mechanics.cmake new file mode 100644 index 0000000..3db9234 --- /dev/null +++ b/linear_tet_mechanics.cmake @@ -0,0 +1,3 @@ +set(TEST_GIT_REPO https://github.com/OpenCMISS-Examples/linear_tet_mechanics.git) +set(TEST_BRANCH develop) +set(TEST_TARGETS linear_tet_mechanics) diff --git a/membrane_extension_2d_space.cmake b/membrane_extension_2d_space.cmake new file mode 100644 index 0000000..541dc6d --- /dev/null +++ b/membrane_extension_2d_space.cmake @@ -0,0 +1,3 @@ +set(TEST_GIT_REPO https://github.com/OpenCMISS-Examples/membrane_extension_2d_space.git) +set(TEST_BRANCH develop) +set(TEST_TARGETS membrane_extension_2d_space) diff --git a/monodomain_2D_HH.cmake b/monodomain_2D_HH.cmake new file mode 100644 index 0000000..c17cd21 --- /dev/null +++ b/monodomain_2D_HH.cmake @@ -0,0 +1,3 @@ +set(TEST_GIT_REPO https://github.com/OpenCMISS-Examples/monodomain_2D_HH.git) +set(TEST_BRANCH develop) +set(PYTEST_TARGETS src/python/monodomain_2D_HH.py) diff --git a/monodomain_2D_vary_parameters_spatially.cmake b/monodomain_2D_vary_parameters_spatially.cmake new file mode 100644 index 0000000..6de5545 --- /dev/null +++ b/monodomain_2D_vary_parameters_spatially.cmake @@ -0,0 +1,3 @@ +set(TEST_GIT_REPO https://github.com/OpenCMISS-Examples/monodomain_2D_vary_parameters_spatially.git) +set(TEST_BRANCH develop) +set(PYTEST_TARGETS src/python/monodomain_2D_vary_parameters_spatially.py) diff --git a/mooney_rivlin_cellml.cmake b/mooney_rivlin_cellml.cmake new file mode 100644 index 0000000..f3d99ce --- /dev/null +++ b/mooney_rivlin_cellml.cmake @@ -0,0 +1,3 @@ +set(TEST_GIT_REPO https://github.com/OpenCMISS-Examples/mooney_rivlin_cellml.git) +set(TEST_BRANCH develop) +set(TEST_TARGETS mooney_rivlin_cellml) diff --git a/navierstokes_coupled1d0d.cmake b/navierstokes_coupled1d0d.cmake new file mode 100644 index 0000000..aee2dae --- /dev/null +++ b/navierstokes_coupled1d0d.cmake @@ -0,0 +1,3 @@ +set(TEST_GIT_REPO https://github.com/OpenCMISS-Examples/navierstokes_coupled1d0d.git) +set(TEST_BRANCH develop) +set(PYTEST_TARGETS src/python/coupled1d0d.py) diff --git a/navierstokes_liddrivencavity.cmake b/navierstokes_liddrivencavity.cmake new file mode 100644 index 0000000..039c800 --- /dev/null +++ b/navierstokes_liddrivencavity.cmake @@ -0,0 +1,3 @@ +set(TEST_GIT_REPO https://github.com/OpenCMISS-Examples/navierstokes_liddrivencavity.git) +set(TEST_BRANCH develop) +set(PYTEST_TARGETS src/python/LidDriven.py) diff --git a/navierstokes_poiseuilleflow.cmake b/navierstokes_poiseuilleflow.cmake new file mode 100644 index 0000000..db4dcca --- /dev/null +++ b/navierstokes_poiseuilleflow.cmake @@ -0,0 +1,3 @@ +set(TEST_GIT_REPO https://github.com/OpenCMISS-Examples/navierstokes_poiseuilleflow.git) +set(TEST_BRANCH develop) +set(PYTEST_TARGETS src/python/poiseuille.py) diff --git a/nonlinear_poisson_equation.cmake b/nonlinear_poisson_equation.cmake new file mode 100644 index 0000000..09e6cea --- /dev/null +++ b/nonlinear_poisson_equation.cmake @@ -0,0 +1,3 @@ +set(TEST_GIT_REPO https://github.com/OpenCMISS-Examples/nonlinear_poisson_equation.git) +set(TEST_BRANCH develop) +set(TEST_TARGETS nonlinear_poisson_equation) diff --git a/poiseuille_static.cmake b/poiseuille_static.cmake new file mode 100644 index 0000000..437a83b --- /dev/null +++ b/poiseuille_static.cmake @@ -0,0 +1,3 @@ +set(TEST_GIT_REPO https://github.com/ssafaei/poiseuille_static.git) +set(TEST_BRANCH develop) +set(TEST_TARGETS poiseuille_static_fortran) diff --git a/simple_shear.cmake b/simple_shear.cmake new file mode 100644 index 0000000..7488e09 --- /dev/null +++ b/simple_shear.cmake @@ -0,0 +1,3 @@ +set(TEST_GIT_REPO https://github.com/OpenCMISS-Examples/simple_shear.git) +set(TEST_BRANCH develop) +set(TEST_TARGETS simple_shear) diff --git a/static_advection_diffusion_equation.cmake b/static_advection_diffusion_equation.cmake new file mode 100644 index 0000000..f83cdea --- /dev/null +++ b/static_advection_diffusion_equation.cmake @@ -0,0 +1,3 @@ +set(TEST_GIT_REPO https://github.com/OpenCMISS-Examples/static_advection_diffusion_equation.git) +set(TEST_BRANCH develop) +set(TEST_TARGETS static_advection_diffusion_equation) diff --git a/stokes_ale.cmake b/stokes_ale.cmake new file mode 100644 index 0000000..19ac6ba --- /dev/null +++ b/stokes_ale.cmake @@ -0,0 +1,3 @@ +set(TEST_GIT_REPO https://github.com/OpenCMISS-Examples/stokes_ale.git) +set(TEST_BRANCH develop) +set(TEST_TARGETS stokes_ale_fortran) diff --git a/stokes_dynamic.cmake b/stokes_dynamic.cmake new file mode 100644 index 0000000..187117c --- /dev/null +++ b/stokes_dynamic.cmake @@ -0,0 +1,3 @@ +set(TEST_GIT_REPO https://github.com/OpenCMISS-Examples/stokes_dynamic.git) +set(TEST_BRANCH develop) +set(TEST_TARGETS stokes_dynamic_fortran) diff --git a/stokes_static.cmake b/stokes_static.cmake new file mode 100644 index 0000000..a4cbfd9 --- /dev/null +++ b/stokes_static.cmake @@ -0,0 +1,3 @@ +set(TEST_GIT_REPO https://github.com/OpenCMISS-Examples/stokes_static.git) +set(TEST_BRANCH develop) +set(TEST_TARGETS stokes_static_fortran) diff --git a/uniaxial_extension.cmake b/uniaxial_extension.cmake new file mode 100644 index 0000000..5e2d69a --- /dev/null +++ b/uniaxial_extension.cmake @@ -0,0 +1,4 @@ +set(TEST_GIT_REPO https://github.com/OpenCMISS-Examples/uniaxial_extension.git) +set(TEST_BRANCH develop) +set(TEST_TARGETS uniaxial_extension) +set(PYTEST_TARGETS src/python/uniaxial_extension.py)