This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug libfortran/16434] New: gfortran SP edit descriptor failure: test f77-edit-s-out.f


Test g77.dg/f77-edit-s-out.f fails as leading + signs are not optional with 
the SP edit descriptor.  

The test is:

C Test Fortran 77 S, SS and SP edit descriptors 
C      (ANSI X3.9-1978 Section 13.5.6)
C
C Origin: David Billinghurst <David.Billinghurst@riotinto.com>
C
C { dg-do run }
C ( dg-output "^" }
 10   format(SP,I3,1X,SS,I3)
 20   format(SP,I3,1X,SS,I3,SP,I3)
 30   format(SP,I3,1X,SS,I3,S,I3)
 40   format(SP,I3)
 50   format(SP,I2)
      write(*,10) 10, 20      ! { dg-output "\\+10  20(\n|\r\n|\r)" }
      write(*,20) 10, 20, 30  ! { dg-output "\\+10  20\\+30(\n|\r\n|\r)" }
      write(*,30) 10, 20, 30  ! { dg-output "\\+10  20 30(\n|\r\n|\r)" } 
      write(*,40) 0           ! { dg-output " \\+0(\n|\r\n|\r)" }
C 15.5.9 - Note 5: When SP editing is in effect, the plus sign is not optional
      write(*,50) 11          ! { dg-output "\\*\\*(\n|\r\n|\r)" }
C { dg-output "\$" }
      end

The output is
  10  20
 10  20 30
 10  20 30
  0
11

but should be
+10  20
+10  20+30
+10  20 30
 +0
**

-- 
           Summary: gfortran SP edit descriptor failure:  test f77-edit-s-
                    out.f
           Product: gcc
           Version: 3.5.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: libfortran
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: billingd at gcc dot gnu dot org
                CC: gcc-bugs at gcc dot gnu dot org
 GCC build triplet: i686-pc-cygwin
  GCC host triplet: i686-pc-cygwin
GCC target triplet: i686-pc-cygwin


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16434


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]