@@ -15,7 +15,7 @@ module prif_allocate_test_m
1515 use prif, only : prif_deallocate_coarray, prif_deallocate_coarrays
1616#endif
1717 use julienne_m, only: test_description_t, test_diagnosis_t, test_result_t, test_t, string_t, usher &
18- ,operator (.all.), operator (.also.), operator (.equalsExpected.), operator (.expect.), operator ( // )
18+ ,operator (.all.), operator (.also.), operator (.equalsExpected.), operator (// )
1919 use iso_c_binding, only: &
2020 c_ptr, c_int, c_int64_t, c_size_t, c_null_funptr, &
2121 c_f_pointer, c_null_ptr, c_loc, c_associated, c_intptr_t
@@ -72,15 +72,15 @@ function check_allocate_integer_scalar_coarray_with_corank1() result(diag)
7272
7373 allocated_memory = c_null_ptr
7474 local_slice = > null ()
75- ALSO(.expect. ( . not. associated (local_slice) ))
75+ ALSO(.not. associated (local_slice))
7676
7777 data_size = storage_size(dummy_element)/ 8
7878 call prif_allocate_coarray( &
7979 lcobounds, ucobounds, data_size, c_null_funptr, &
8080 coarray_handle, allocated_memory)
8181
8282 call c_f_pointer(allocated_memory, local_slice)
83- ALSO(.expect. associated (local_slice))
83+ ALSO(associated (local_slice))
8484
8585 local_slice = 42
8686 ALSO(local_slice .equalsExpected. 42 )
@@ -172,7 +172,7 @@ function assert_aliased(h1, h2, offset) result(diag)
172172
173173 call prif_set_context_data(h2, c_null_ptr)
174174 call prif_get_context_data(h1, c1)
175- ALSO(.expect. ( . not. c_associated(c1) ))
175+ ALSO(.not. c_associated(c1))
176176
177177 end function
178178
@@ -199,7 +199,7 @@ function check_allocate_integer_array_coarray_with_corank2() result(diag)
199199
200200 allocated_memory = c_null_ptr
201201 local_slice = > null ()
202- ALSO(.expect. ( . not.associated (local_slice) ))
202+ ALSO(.not. associated (local_slice))
203203
204204 data_size = 10 * storage_size(dummy_element)/ 8
205205 call prif_allocate_coarray( &
@@ -210,7 +210,7 @@ function check_allocate_integer_array_coarray_with_corank2() result(diag)
210210 ALSO2(query_size .equalsExpected. data_size, " invalid prif_size_bytes" )
211211
212212 call c_f_pointer(allocated_memory, local_slice, [10 ])
213- ALSO(.expect. associated (local_slice))
213+ ALSO(associated (local_slice))
214214
215215 local_slice = [(i* i, i = 1 , 10 )]
216216 ALSO(.all. (local_slice .equalsExpected. [(i* i, i = 1 , 10 )]))
0 commit comments