Commit 37b22c82 by Jerry DeLisle

re PR libfortran/33253 (namelist: reading back a string with apostrophe)

2007-10-04  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

	PR libfortran/33253
	* gfortran.dg/namelist_39.f90: Revise to use long names.

From-SVN: r129018
parent fed2a473
2007-10-04 Jerry DeLisle <jvdelisle@gcc.gnu.org>
PR libfortran/33253
* gfortran.dg/namelist_39.f90: Revise to use long names.
2007-10-04 H.J. Lu <hongjiu.lu@intel.com> 2007-10-04 H.J. Lu <hongjiu.lu@intel.com>
PR fortran/33646 PR fortran/33646
! { dg-do run } ! { dg-do run }
! PR33421 and PR33253 Weird quotation of namelist output of character arrays ! PR33421 and PR33253 Weird quotation of namelist output of character arrays
! Test case from Toon Moene, adapted by Jerry DeLisle <jvdelisle@gcc.gnu.org> ! 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 program test
implicit none implicit none
character(len=45) :: b(3) character(len=45) :: b01234567890123456789012345678901234567890123456789012345678901(3)
namelist /nam/ b namelist /nam/ b01234567890123456789012345678901234567890123456789012345678901
b = 'x' b01234567890123456789012345678901234567890123456789012345678901 = 'x'
open(99, status="scratch") open(99)
write(99,'(4(a,/),a)') "&NAM", & write(99,'(4(a,/),a)') "&NAM", &
" b(1)=' AAP NOOT MIES WIM ZUS JET',", & " b01234567890123456789012345678901234567890123456789012345678901(1)=' AAP NOOT MIES WIM ZUS JET',", &
" b(2)='SURF.PRESSURE',", & " b01234567890123456789012345678901234567890123456789012345678901(2)='SURF.PRESSURE',", &
" b(3)='APEKOOL',", & " b01234567890123456789012345678901234567890123456789012345678901(3)='APEKOOL',", &
" /" " /"
rewind(99) rewind(99)
read(99,nml=nam) read(99,nml=nam)
close(99) close(99)
if (b(1).ne." AAP NOOT MIES WIM ZUS JET ") call abort if (b01234567890123456789012345678901234567890123456789012345678901(1).ne.&
if (b(2).ne."SURF.PRESSURE ") call abort " AAP NOOT MIES WIM ZUS JET ") call abort
if (b(3).ne."APEKOOL ") call abort if (b01234567890123456789012345678901234567890123456789012345678901(2).ne.&
"SURF.PRESSURE ") call abort
if (b01234567890123456789012345678901234567890123456789012345678901(3).ne.&
"APEKOOL ") call abort
end program test end program test
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment