view gcc/testsuite/gfortran.dg/namelist_39.f90 @ 144:8f4e72ab4e11

fix segmentation fault caused by nothing next cur_op to end
author Takahiro SHIMIZU <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Sun, 23 Dec 2018 21:23:56 +0900
parents 84e7813d76e9
children
line wrap: on
line source

! { dg-do run }
! PR33421 and PR33253 Weird quotation of namelist output of character arrays
! Test case from Toon Moone, adapted by Jerry DeLisle  <jvdelisle@gcc.gnu.org>

! Long names used to test line_buffer feature is working.

program test
implicit none
character(len=45) :: b01234567890123456789012345678901234567890123456789012345678901(3)
namelist /nam/ b01234567890123456789012345678901234567890123456789012345678901
b01234567890123456789012345678901234567890123456789012345678901 = 'x'
open(99, status="scratch")
write(99,'(4(a,/),a)') "&NAM", &
      " b01234567890123456789012345678901234567890123456789012345678901(1)=' AAP NOOT MIES WIM ZUS JET',", &
      " b01234567890123456789012345678901234567890123456789012345678901(2)='SURF.PRESSURE',", &
      " b01234567890123456789012345678901234567890123456789012345678901(3)='APEKOOL',", &
      " /"
rewind(99)
read(99,nml=nam)
close(99)

if (b01234567890123456789012345678901234567890123456789012345678901(1).ne.&
    " AAP NOOT MIES WIM ZUS JET                   ") STOP 1
if (b01234567890123456789012345678901234567890123456789012345678901(2).ne.&
    "SURF.PRESSURE                                ") STOP 2
if (b01234567890123456789012345678901234567890123456789012345678901(3).ne.&
    "APEKOOL                                      ") STOP 3
end program test