aboutsummaryrefslogtreecommitdiff
path: root/libgomp/testsuite/libgomp.fortran/allocatable12.f90
blob: 8ce4dd2f3fed058943d21c2462216d5da118014b (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
! { dg-do run }

  integer, allocatable :: a, b(:), c(:,:)
  logical :: l
  if (allocated (a) .or. allocated (b) .or. allocated (c)) stop 1

!$omp parallel private (a, b, c, l)
  l = .false.
  if (allocated (a) .or. allocated (b) .or. allocated (c)) stop 2

!$omp single
  allocate (a, b(6:9), c(3, 8:9))
  a = 4
  b = 5
  c = 6
!$omp end single copyprivate (a, b, c)

  if (.not.allocated (a)) stop 3
  if (.not.allocated (b) .or. size (b) /= 4) stop 4
  if (lbound (b, 1) /= 6 .or. ubound (b, 1) /= 9) stop 5
  if (.not.allocated (c) .or. size (c) /= 6) stop 6
  if (size (c, 1) /= 3 .or. size (c, 2) /= 2) stop 7
  if (lbound (c, 1) /= 1 .or. ubound (c, 1) /= 3) stop 8
  if (lbound (c, 2) /= 8 .or. ubound (c, 2) /= 9) stop 9
  if (a /= 4 .or. any (b /= 5) .or. any (c /= 6)) stop 10

!$omp single
  deallocate (a, b, c)
  if (allocated (a) .or. allocated (b) .or. allocated (c)) stop 11
  allocate (a, b(0:4), c(3, 2:7))
  a = 1
  b = 2
  c = 3
!$omp end single copyprivate (a, b, c)

  if (.not.allocated (a)) stop 12
  if (.not.allocated (b) .or. size (b) /= 5) stop 13
  if (lbound (b, 1) /= 0 .or. ubound (b, 1) /= 4) stop 14
  if (.not.allocated (c) .or. size (c) /= 18) stop 15
  if (size (c, 1) /= 3 .or. size (c, 2) /= 6) stop 16
  if (lbound (c, 1) /= 1 .or. ubound (c, 1) /= 3) stop 17
  if (lbound (c, 2) /= 2 .or. ubound (c, 2) /= 7) stop 18
  if (a /= 1 .or. any (b /= 2) .or. any (c /= 3)) stop 19

!$omp single
  l = .true.
  deallocate (a, b, c)
  if (allocated (a) .or. allocated (b) .or. allocated (c)) stop 20
  allocate (a, b(2:6), c(3:5, 3:8))
  a = 7
  b = 8
  c = 9
!$omp end single copyprivate (a, b, c)

  if (.not.allocated (a)) stop 21
  if (.not.allocated (b) .or. size (b) /= 5) stop 22
  if (l) then
    if (lbound (b, 1) /= 2 .or. ubound (b, 1) /= 6) stop 23
  else
    if (lbound (b, 1) /= 0 .or. ubound (b, 1) /= 4) stop 24
  end if
  if (.not.allocated (c) .or. size (c) /= 18) stop 25
  if (size (c, 1) /= 3 .or. size (c, 2) /= 6) stop 26
  if (l) then
    if (lbound (c, 1) /= 3 .or. ubound (c, 1) /= 5) stop 27
    if (lbound (c, 2) /= 3 .or. ubound (c, 2) /= 8) stop 28
  else
    if (lbound (c, 1) /= 1 .or. ubound (c, 1) /= 3) stop 29
    if (lbound (c, 2) /= 2 .or. ubound (c, 2) /= 7) stop 30
  end if
  if (a /= 7 .or. any (b /= 8) .or. any (c /= 9)) stop 31

!$omp end parallel
end