diff options
author | Tobias Burnus <burnus@net-b.de> | 2009-08-27 13:59:51 +0200 |
---|---|---|
committer | Tobias Burnus <burnus@gcc.gnu.org> | 2009-08-27 13:59:51 +0200 |
commit | 7765789968f0b70449347d233c3d845501dba67b (patch) | |
tree | a7fa0aa0fdb2c4e133f3c5973d9b52a826523ee0 | |
parent | 4a44a72d23f7f6e76329ed29f144b7c6eac4feba (diff) | |
download | gcc-7765789968f0b70449347d233c3d845501dba67b.tar.gz |
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
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/gfortran.dg/fmt_with_extra.f | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index ad8b144ae6e..379012fed27 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -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 diff --git a/gcc/testsuite/gfortran.dg/fmt_with_extra.f b/gcc/testsuite/gfortran.dg/fmt_with_extra.f index 45664be906f..9782882cde9 100644 --- a/gcc/testsuite/gfortran.dg/fmt_with_extra.f +++ b/gcc/testsuite/gfortran.dg/fmt_with_extra.f @@ -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 |