We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bfea398 commit 404b79cCopy full SHA for 404b79c
1 file changed
test/mimetic_test_m.F90
@@ -37,9 +37,18 @@ function results() result(test_results)
37
type(test_description_t), allocatable :: test_descriptions(:)
38
type(test_result_t), allocatable :: test_results(:)
39
40
+#if HAVE_MULTI_IMAGE_SUPPORT
41
test_descriptions = [ &
42
test_description_t("the divergence of a gradient matching a Laplacian", div_grad_matches_laplacian) &
43
]
44
+#else
45
+ procedure(diagnosis_function_i), pointer :: div_grad_matches_laplacian_ptr
46
+ div_grad_matches_laplacian_ptr => div_grad_matches_laplacian
47
+
48
+ test_descriptions = [ &
49
+ test_description_t("the divergence of a gradient matching a Laplacian", div_grad_matches_laplacian_ptr) &
50
+ ]
51
+#endif
52
test_results = test_descriptions%run()
53
end function
54
0 commit comments