OSDN Git Service

PR testsuite/35406
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gfortran.dg / ltime_gmtime_2.f90
1 ! { dg-do run }
2 ! { dg-options "-fdefault-integer-8 -std=gnu" }
3   integer :: x(9), y(9), t
4
5   t = time()
6   call ltime(t,x)
7   call gmtime(t,y)
8   if (x(1) /= y(1) .or. x(2) /= y(2)) call abort
9   end