aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/char_length_5.f90
blob: 929f01b22b432f687992db49c84ac7589db6561e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
! { dg-do run }
! Tests the fix for PR31867, in which the interface evaluation
! of the character length of 'join' (ie. the length available in
! the caller) was wrong.
!
! Contributed by <beliavsky@aol.com> 
!
module util_mod
  implicit none
contains
  function join (words, sep) result(str)
    character (len=*), intent(in)        :: words(:),sep
    character (len = (size (words) - 1) * len_trim (sep) + & 
               sum (len_trim (words)))   :: str
    integer                              :: i,nw
    nw  = size (words)
    str = ""
    if (nw < 1) then
      return
    else
      str = words(1)
    end if
    do i=2,nw
      str = trim (str) // trim (sep) // words(i)
    end do
  end function join
end module util_mod
!
program xjoin
  use util_mod, only: join
  implicit none
  integer yy
  character (len=5) :: words(5:8) = (/"two  ","three","four ","five "/), sep = "^#^"
  character (len=5) :: words2(4) = (/"bat  ","ball ","goal ","stump"/), sep2 = "&"

  if (join (words, sep) .ne. "two^#^three^#^four^#^five") call abort ()
  if (len (join (words, sep)) .ne. 25) call abort ()

  if (join (words(5:6), sep) .ne. "two^#^three") call abort ()
  if (len (join (words(5:6), sep)) .ne. 11) call abort ()

  if (join (words(7:8), sep) .ne. "four^#^five") call abort ()
  if (len (join (words(7:8), sep)) .ne. 11) call abort ()

  if (join (words(5:7:2), sep) .ne. "two^#^four") call abort ()
  if (len (join (words(5:7:2), sep)) .ne. 10) call abort ()

  if (join (words(6:8:2), sep) .ne. "three^#^five") call abort ()
  if (len (join (words(6:8:2), sep)) .ne. 12) call abort ()

  if (join (words2, sep2) .ne. "bat&ball&goal&stump") call abort ()
  if (len (join (words2, sep2)) .ne. 19) call abort ()

  if (join (words2(1:2), sep2) .ne. "bat&ball") call abort ()
  if (len (join (words2(1:2), sep2)) .ne. 8) call abort ()

  if (join (words2(2:4:2), sep2) .ne. "ball&stump") call abort ()
  if (len (join (words2(2:4:2), sep2)) .ne. 10) call abort ()

end program xjoin