re PR fortran/28039 (Warn when ignoring extra characters in the format specification)

2009-08-27  Tobias Burnus  <burnus@net-b.de>

        PR fortran/28039
        * gfortran.dg/fmt_with_extra.f: xfail testcase as patch was
        * reverted.

From-SVN: r151141
This commit is contained in:
Tobias Burnus 2009-08-27 13:59:51 +02:00 committed by Tobias Burnus
parent 4a44a72d23
commit 7765789968
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2009-08-27 Tobias Burnus <burnus@net-b.de>
PR fortran/28039
* gfortran.dg/fmt_with_extra.f: xfail testcase as patch was reverted.
2009-08-27 Daniel Kraft <d@domob.eu>
PR fortran/37425

View File

@ -4,5 +4,5 @@
implicit none
real :: r
r = 1.0
write(*,'(a),f)') 'Hello', r !{ dg-warning "Extraneous characters in format at" }
write(*,'(a),f)') 'Hello', r ! { dg-warning "Extraneous characters in format at" "PR28039" { xfail *-*-* } }
end