PR rtl-optimization/82913
[official-gcc.git] / gcc / testsuite / gfortran.fortran-torture / execute / random_2.f90
blob1666833058961101370b539f4f30823e522b2705
1 ! Check that the real(4) and real(8) random number generators return the same
2 ! sequence of values.
3 program random_4
4 integer, dimension(:), allocatable :: seed
5 real(kind=4), dimension(10) :: r4
6 real(kind=8), dimension(10) :: r8
7 real, parameter :: delta = 0.0001
8 integer n
10 call random_seed (size=n)
11 allocate (seed(n))
12 call random_seed (get=seed)
13 ! Test both array valued and scalar routines.
14 call random_number(r4)
15 call random_number (r4(10))
17 ! Reset the seed and get the real(8) values.
18 call random_seed (put=seed)
19 call random_number(r8)
20 call random_number (r8(10))
22 if (any ((r4 - r8) .gt. delta)) call abort
23 end program