URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [fmt_missing_period_2.f] - Rev 720
Go to most recent revision | Compare with Previous | Blame | View Log
! { dg-do run } ! { dg-options "-w -std=legacy" } ! PR27634 Missing period in format specifier. Test case derived from case given ! in PR. Submitted by Jerry DeLisle <jvdelisle@gcc.gnu.org> real :: aval = 3.14 character(6) :: str = "xyz" character(12) :: input = "1234abcdef" read(input,'(f4,a6)') aval, str if (aval.ne.1234.0) call abort() if (str.ne."abcdef") call abort() aval = 0.0 str = "xyz" read(input,'(d4,a6)') aval, str if (aval.ne.1234.0) call abort() if (str.ne."abcdef") call abort() end
Go to most recent revision | Compare with Previous | Blame | View Log