aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/class_48.f90
blob: 37ee8626c351c5fcd961c230a7edb0817623a34b (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
! { dg-do run }
!
! PR fortran/51972
! Also tests fixes for PR52102
!
! Check whether DT assignment with polymorphic components works.
!

subroutine test1 ()
  type t
    integer :: x
  end type t

  type t2
    class(t), allocatable :: a
  end type t2

  type(t2) :: one, two

  one = two
  if (allocated (one%a)) call abort ()

  allocate (two%a)
  two%a%x = 7890
  one = two
  if (one%a%x /= 7890) call abort ()

  deallocate (two%a)
  one = two
  if (allocated (one%a)) call abort ()
end subroutine test1

subroutine test2 ()
  type t
    integer, allocatable :: x(:)
  end type t

  type t2
    class(t), allocatable :: a
  end type t2

  type(t2) :: one, two

  one = two
  if (allocated (one%a)) call abort ()

  allocate (two%a)
  one = two
  if (.not.allocated (one%a)) call abort ()
  if (allocated (one%a%x)) call abort ()

  allocate (two%a%x(2))
  two%a%x(:) = 7890
  one = two
  if (any (one%a%x /= 7890)) call abort ()

  deallocate (two%a)
  one = two
  if (allocated (one%a)) call abort ()
end subroutine test2


subroutine test3 ()
  type t
    integer :: x
  end type t

  type t2
    class(t), allocatable :: a(:)
  end type t2

  type(t2) :: one, two

! Test allocate with array source - PR52102
  allocate (two%a(2), source = [t(4), t(6)])

  if (allocated (one%a)) call abort ()

  one = two
  if (.not.allocated (one%a)) call abort ()

  if ((one%a(1)%x /= 4)) call abort ()
  if ((one%a(2)%x /= 6)) call abort ()

  deallocate (two%a)
  one = two

  if (allocated (one%a)) call abort ()

! Test allocate with no source followed by assignments.
  allocate (two%a(2))
  two%a(1)%x = 5
  two%a(2)%x = 7

  if (allocated (one%a)) call abort ()

  one = two
  if (.not.allocated (one%a)) call abort ()

  if ((one%a(1)%x /= 5)) call abort ()
  if ((one%a(2)%x /= 7)) call abort ()

  deallocate (two%a)
  one = two
  if (allocated (one%a)) call abort ()
end subroutine test3

subroutine test4 ()
  type t
    integer, allocatable :: x(:)
  end type t

  type t2
    class(t), allocatable :: a(:)
  end type t2

  type(t2) :: one, two

  if (allocated (one%a)) call abort ()
  if (allocated (two%a)) call abort ()

  allocate (two%a(2))

  if (allocated (two%a(1)%x)) call abort ()
  if (allocated (two%a(2)%x)) call abort ()
  allocate (two%a(1)%x(3), source=[1,2,3])
  allocate (two%a(2)%x(5), source=[5,6,7,8,9])
  one = two
  if (.not. allocated (one%a)) call abort ()
  if (.not. allocated (one%a(1)%x)) call abort ()
  if (.not. allocated (one%a(2)%x)) call abort ()

  if (size(one%a) /= 2) call abort()
  if (size(one%a(1)%x) /= 3) call abort()
  if (size(one%a(2)%x) /= 5) call abort()
  if (any (one%a(1)%x /= [1,2,3])) call abort ()
  if (any (one%a(2)%x /= [5,6,7,8,9])) call abort ()

  deallocate (two%a(1)%x)
  one = two
  if (.not. allocated (one%a)) call abort ()
  if (allocated (one%a(1)%x)) call abort ()
  if (.not. allocated (one%a(2)%x)) call abort ()

  if (size(one%a) /= 2) call abort()
  if (size(one%a(2)%x) /= 5) call abort()
  if (any (one%a(2)%x /= [5,6,7,8,9])) call abort ()

  deallocate (two%a)
  one = two
  if (allocated (one%a)) call abort ()
  if (allocated (two%a)) call abort ()
end subroutine test4


call test1 ()
call test2 ()
call test3 ()
call test4 ()
end