Commit 2803e997 by Jerry DeLisle

re PR libfortran/25463 (T edit descriptor and ADVANCE="no")

2005-12-18  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

	PR libgfortran/25463
	* gfortran.dg/advance.f90: New test.

From-SVN: r108785
parent 0a736393
......@@ -8,6 +8,11 @@
PR rtl-optimization/21041
* gcc.dg/pr21041.c: New test.
2005-12-18 Jerry DeLisle <jvdelisle@gcc.gnu.org>
PR libgfortran/25463
* gfortran.dg/advance.f90: New test.
2005-12-18 Andreas Krebbel <krebbel1@de.ibm.com>
* gcc.dg/20051201-1.c: New test.
! { dg-do run }
! PR25463 Check that advance='no' works correctly.
! Derived from example given in PR by Thomas Koenig
! Contributed by Jerry DeLisle <jvdelisle@gcc.gnu.org>
program pr25463
character(10) :: str
write (10,'(A)',advance="no") 'ab'
write (10,'(TL2,A)') 'c'
rewind (10)
read (10, '(a)') str
if (str.ne.'abc') 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