re PR libfortran/52608 (The test FM110 of the NIST test suite fails since revision 185433)
2012-03-17 Janne Blomqvist <jb@gcc.gnu.org> PR libfortran/52608 * gfortran.dh/pr52608.f90: New test. From-SVN: r185487
This commit is contained in:
parent
789ebabf1d
commit
58f38d619e
2 changed files with 21 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2012-03-17 Janne Blomqvist <jb@gcc.gnu.org>
|
||||
|
||||
PR libfortran/52608
|
||||
* gfortran.dh/pr52608.f90: New test.
|
||||
|
||||
2012-03-17 Tobias Burnus <burnus@net-b.de>
|
||||
|
||||
PR fortran/52585
|
||||
|
|
16
gcc/testsuite/gfortran.dg/pr52608.f90
Normal file
16
gcc/testsuite/gfortran.dg/pr52608.f90
Normal file
|
@ -0,0 +1,16 @@
|
|||
! PR 52608
|
||||
! Testcase reduced from NIST testsuite FM110
|
||||
program fm110_snippet
|
||||
implicit none
|
||||
real :: aavs
|
||||
character(len=100) :: s(2), s2(2)
|
||||
AAVS = .087654
|
||||
35043 FORMAT (" ",16X,"COMPUTED: ",22X,1P/26X,F5.4,3X,2P,F5.3,+3P," ",&
|
||||
(23X,F6.2),3X)
|
||||
5043 FORMAT (17X,"CORRECT: ",/24X,&
|
||||
" .8765 8.765 87.65")
|
||||
WRITE (s,35043) AAVS,AAVS,AAVS
|
||||
WRITE (s2,5043)
|
||||
if (s(2) /= s2(2)) call abort()
|
||||
end program fm110_snippet
|
||||
|
Loading…
Add table
Reference in a new issue