@@ -253,7 +253,8 @@ subroutine test_int_ord_sort( a, a_name, ltest )
253
253
call verify_reverse_sort( dummy, valid, i )
254
254
ltest = (ltest .and. valid)
255
255
if ( .not. valid ) then
256
- write ( * , * ) " reverse + work ORD_SORT did not sort " // a_name // " ."
256
+ write ( * , * ) " reverse + work ORD_SORT did not sort " // a_name // &
257
+ " ."
257
258
write (* ,* ) ' i = ' , i
258
259
write (* ,' (a12, 2i7)' ) ' dummy(i-1:i) = ' , dummy(i-1 :i)
259
260
end if
@@ -326,7 +327,8 @@ subroutine test_char_ord_sort( a, a_name, ltest )
326
327
call verify_char_reverse_sort( char_dummy, valid, i )
327
328
ltest = (ltest .and. valid)
328
329
if ( .not. valid ) then
329
- write ( * , * ) " reverse + work ORD_SORT did not sort " // a_name // " ."
330
+ write ( * , * ) " reverse + work ORD_SORT did not sort " // a_name // &
331
+ " ."
330
332
write (* ,* ) ' i = ' , i
331
333
write (* ,' (a, 2(1x,a4))' ) ' char_dummy(i-1:i) = ' , char_dummy(i-1 :i)
332
334
end if
@@ -337,7 +339,8 @@ subroutine test_char_ord_sort( a, a_name, ltest )
337
339
call verify_char_reverse_sort( char_dummy, valid, i )
338
340
ltest = (ltest .and. valid)
339
341
if ( .not. valid ) then
340
- write ( * , * ) " reverse + work ORD_SORT did not sort " // a_name // " ."
342
+ write ( * , * ) " reverse + work ORD_SORT did not sort " // a_name // &
343
+ " ."
341
344
write (* ,* ) ' i = ' , i
342
345
write (* ,' (a, 2(1x,a4))' ) ' char_dummy(i-1:i) = ' , char_dummy(i-1 :i)
343
346
end if
@@ -403,7 +406,8 @@ subroutine test_string_ord_sort( a, a_name, ltest )
403
406
call verify_string_reverse_sort( string_dummy, valid, i )
404
407
ltest = (ltest .and. valid)
405
408
if ( .not. valid ) then
406
- write ( * , * ) " reverse + work ORD_SORT did not sort " // a_name // " ."
409
+ write ( * , * ) " reverse + work ORD_SORT did not sort " // a_name // &
410
+ " ."
407
411
write (* ,* ) ' i = ' , i
408
412
write (* ,' (a, 2(1x,a))' ) ' string_dummy(i-1:i) = ' , &
409
413
string_dummy(i-1 :i)
@@ -784,9 +788,11 @@ subroutine test_string_sort_indexes( ltest )
784
788
785
789
ltest = .true.
786
790
787
- call test_string_sort_index( string_decrease, " String Decrease" , ldummy )
791
+ call test_string_sort_index( string_decrease, " String Decrease" , &
792
+ ldummy )
788
793
ltest = (ltest .and. ldummy)
789
- call test_string_sort_index( string_increase, " String Increase" , ldummy )
794
+ call test_string_sort_index( string_increase, " String Increase" , &
795
+ ldummy )
790
796
ltest = (ltest .and. ldummy)
791
797
call test_string_sort_index( string_rand, " String Random" , ldummy )
792
798
ltest = (ltest .and. ldummy)
0 commit comments