2 ! Tests the fix for PR31867, in which the interface evaluation
3 ! of the character length of 'join' (ie. the length available in
4 ! the caller) was wrong.
6 ! Contributed by <beliavsky@aol.com>
11 function join (words
, sep
) result(str
)
12 character (len
=*), intent(in
) :: words(:),sep
13 character (len
= (size (words
) - 1) * len_trim (sep
) + &
14 sum (len_trim (words
))) :: str
24 str
= trim (str
) // trim (sep
) // words(i
)
30 use util_mod
, only
: join
33 character (len
=5) :: words(5:8) = (/"two ","three","four ","five "/), sep
= "^#^"
34 character (len
=5) :: words2(4) = (/"bat ","ball ","goal ","stump"/), sep2
= "&"
36 if (join (words
, sep
) .ne
. "two^#^three^#^four^#^five") call abort ()
37 if (len (join (words
, sep
)) .ne
. 25) call abort ()
39 if (join (words(5:6), sep
) .ne
. "two^#^three") call abort ()
40 if (len (join (words(5:6), sep
)) .ne
. 11) call abort ()
42 if (join (words(7:8), sep
) .ne
. "four^#^five") call abort ()
43 if (len (join (words(7:8), sep
)) .ne
. 11) call abort ()
45 if (join (words(5:7:2), sep
) .ne
. "two^#^four") call abort ()
46 if (len (join (words(5:7:2), sep
)) .ne
. 10) call abort ()
48 if (join (words(6:8:2), sep
) .ne
. "three^#^five") call abort ()
49 if (len (join (words(6:8:2), sep
)) .ne
. 12) call abort ()
51 if (join (words2
, sep2
) .ne
. "bat&ball&goal&stump") call abort ()
52 if (len (join (words2
, sep2
)) .ne
. 19) call abort ()
54 if (join (words2(1:2), sep2
) .ne
. "bat&ball") call abort ()
55 if (len (join (words2(1:2), sep2
)) .ne
. 8) call abort ()
57 if (join (words2(2:4:2), sep2
) .ne
. "ball&stump") call abort ()
58 if (len (join (words2(2:4:2), sep2
)) .ne
. 10) call abort ()
61 ! { dg-final { cleanup-modules "util_mod" } }