Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gfortran.fortran-torture / execute / random_init.f90
blob36394589d8bc6e0464f693a2bfc3c4148041288c
1 ! pr 15149
2 ! verify the random number generator is functional
3 program test_random
4 implicit none
5 real :: r(5) = 0.0
7 call random_number(r)
8 if (all (r .eq. 0)) call abort
9 end program