Commit 0a0a8cf7 by Francois-Xavier Coudert Committed by François-Xavier Coudert

* gfortran.dg/slash_1.f90: New test.

From-SVN: r101378
parent e082bf48
2005-06-28 Francois-Xavier Coudert <coudert@clipper.ens.fr>
PR libfortran/22170
* gfortran.dg/slash_1.f90: New test.
2005-06-27 Richard Henderson <rth@redhat.com> 2005-06-27 Richard Henderson <rth@redhat.com>
* gcc.dg/vect/vect-reduc-1.c: Adjust test to properly validate MIN. * gcc.dg/vect/vect-reduc-1.c: Adjust test to properly validate MIN.
......
! PR libfortran/22170
! { dg-do run }
integer i
open (10,status='scratch')
write (10,'(A,2/,A)') '12', '17'
rewind (10)
read (10,'(I2)') i
if (i /= 12) call abort
read (10,'(I2)') i
if (i /= 0) call abort
read (10,'(I2)') i
if (i /= 17) call abort
end
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment