aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/date_and_time_3.f90
blob: 020266d87e9a3deb4ffdc75104246dd1efd9f0b6 (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
! { dg-do run }
! { dg-additional-options "-std=f2018" }
!
! PR fortran/96580 - integer kind of VALUES argument of DATE_AND_TIME intrinsic

program test_time_and_date
  implicit none
  integer(2), dimension(8) :: values2
  integer(4), dimension(8) :: values4
  integer(8), dimension(8) :: values8

  call date_and_time(VALUES=values2)
  call date_and_time(VALUES=values4)
  call date_and_time(VALUES=values8)

  ! Check consistency of year and of time difference from UTC
  if (values2(1) /= -HUGE(0_2) .and. values4(1) /= -HUGE(0_4)) then
     if (abs (values4(1) - values2(1)) > 1) stop 1
  end if
  if (values2(4) /= -HUGE(0_2) .and. values4(4) /= -HUGE(0_4)) then
     if (values2(4) /= values4(4))          stop 2
  end if
  if (values4(1) /= -HUGE(0_4) .and. values8(1) /= -HUGE(0_8)) then
     if (abs (values8(1) - values4(1)) > 1) stop 3
  end if
  if (values4(4) /= -HUGE(0_4) .and. values8(4) /= -HUGE(0_8)) then
     if (values4(4) /= values8(4))          stop 4
  end if
end program test_time_and_date