URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gfortran.dg/] [bounds_check_strlen_6.f90] - Rev 302
Compare with Previous | Blame | View Log
! { dg-do run }! { dg-options "-fbounds-check" }! PR fortran/37746! Ensure that too long or matching string lengths don't trigger the runtime! error for matching string lengths, if the dummy argument is neither! POINTER nor ALLOCATABLE or assumed-shape.! Also check that absent OPTIONAL arguments don't trigger the check.MODULE mCONTAINSSUBROUTINE test (str, opt)IMPLICIT NONECHARACTER(len=5) :: strCHARACTER(len=5), OPTIONAL :: optEND SUBROUTINE testEND MODULE mPROGRAM mainUSE mIMPLICIT NONECALL test ('abcde') ! String length matches.CALL test ('abcdef') ! String too long, is ok.END PROGRAM main! { dg-final { cleanup-modules "m" } }
