Skip to content

Commit e065f42

Browse files
committed
test(julienne): fix GCC 13-14.2 workaround
1 parent 2a527c0 commit e065f42

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

test/julienne/driver.F90

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ program test_suite_driver
1212
use prif_co_sum_test_m, only : prif_co_sum_test_t
1313
use prif_image_queries_test_m, only : prif_image_queries_test_t
1414
use prif_num_images_test_m, only : prif_num_images_test_t
15-
use prif_this_image_no_coarray_test_m, only : prif_this_image_no_coarray_test_t
1615
use prif_sync_images_test_m, only : prif_sync_images_test_t
16+
use prif_this_image_no_coarray_test_m, only : prif_this_image_no_coarray_test_t
1717
implicit none
1818

1919
associate(test_harness => test_harness_t([ &
@@ -26,8 +26,8 @@ program test_suite_driver
2626
,test_fixture_t( prif_co_sum_test_t() ) &
2727
,test_fixture_t( prif_image_queries_test_t() ) &
2828
,test_fixture_t( prif_num_images_test_t() ) &
29-
,test_fixture_t( prif_this_image_no_coarray_test_t() ) &
3029
,test_fixture_t( prif_sync_images_test_t() ) &
30+
,test_fixture_t( prif_this_image_no_coarray_test_t() ) &
3131
]))
3232
call test_harness%report_results
3333
end associate

test/julienne/prif_co_max_test_m.F90

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,14 @@ function results() result(test_results)
6868
,check_character_ptr => check_character
6969

7070
test_results = prif_co_max_test%run([ &
71-
test_description_t("computing element-wise maxima for integer(c_int32_t) scalars", check_32_bit_integer) &
72-
,test_description_t("computing element-wise maxima for a 1D default integer array", check_default_integer) &
73-
,test_description_t("computing element-wise maxima for a 1D integer(c_int8_t) array", check_8_bit_integer) &
74-
,test_description_t("computing element-wise maxima for a 1D integer(c_int16_t) array", check_16_bit_integer) &
75-
,test_description_t("computing element-wise maxima for a 1D integer(c_int64_t array", check_64_bit_integer) &
76-
,test_description_t("computing element-wise maxima for a 2D real(c_float) array", check_32_bit_real) &
77-
,test_description_t("computing element-wise maxima for a 1D real(c_double array", check_64_bit_real) &
78-
,test_description_t("computing element-wise maxima for character scalars", check_character) &
71+
test_description_t("computing element-wise maxima for integer(c_int32_t) scalars", check_32_bit_integer_ptr) &
72+
,test_description_t("computing element-wise maxima for a 1D default integer array", check_default_integer_ptr) &
73+
,test_description_t("computing element-wise maxima for a 1D integer(c_int8_t) array", check_8_bit_integer_ptr) &
74+
,test_description_t("computing element-wise maxima for a 1D integer(c_int16_t) array", check_16_bit_integer_ptr) &
75+
,test_description_t("computing element-wise maxima for a 1D integer(c_int64_t array", check_64_bit_integer_ptr) &
76+
,test_description_t("computing element-wise maxima for a 2D real(c_float) array", check_32_bit_real_ptr) &
77+
,test_description_t("computing element-wise maxima for a 1D real(c_double array", check_64_bit_real_ptr) &
78+
,test_description_t("computing element-wise maxima for character scalars", check_character_ptr) &
7979
])
8080
end function
8181

test/julienne/prif_co_reduce_test_m.F90

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,10 @@ function results() result(test_results)
8080
#endif
8181

8282
test_results = prif_co_reduce_test%run([ &
83-
test_description_t("performing a logical .and. reduction", check_logical) &
84-
,test_description_t("performing a derived type reduction", check_derived_type_reduction) &
83+
test_description_t("performing a logical .and. reduction", check_logical_ptr) &
84+
,test_description_t("performing a derived type reduction", check_derived_type_reduction_ptr) &
8585
#if HAVE_PARAM_DERIVED
86-
,test_description_t("performing a parameterized derived type reduction", check_type_parameter_reduction) &
86+
,test_description_t("performing a parameterized derived type reduction", check_type_parameter_reduction_ptr) &
8787
#endif
8888
])
8989
end function

0 commit comments

Comments
 (0)