(This part was missing in the r118852 / Wed Nov 15 10:13:16 2006 check in)
2007-01-31 Tobias Burnus <burnus@net-b.de> PR fortran/27588 * gfortran.dg/char_bounds_check_fail_1.f90: Add test. From-SVN: r121401
This commit is contained in:
parent
9bce3c1cc4
commit
010dc0fdd0
@ -1,3 +1,8 @@
|
|||||||
|
2007-01-31 Tobias Burnus <burnus@net-b.de>
|
||||||
|
|
||||||
|
PR fortran/27588
|
||||||
|
* gfortran.dg/char_bounds_check_fail_1.f90: Add test.
|
||||||
|
|
||||||
2007-01-31 Tobias Burnus <burnus@net-b.de>
|
2007-01-31 Tobias Burnus <burnus@net-b.de>
|
||||||
|
|
||||||
PR fortran/30520
|
PR fortran/30520
|
||||||
|
12
gcc/testsuite/gfortran.dg/char_bounds_check_fail_1.f90
Normal file
12
gcc/testsuite/gfortran.dg/char_bounds_check_fail_1.f90
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
! { dg-do run }
|
||||||
|
! { dg-options "-fbounds-check" }
|
||||||
|
! { dg-shouldfail "Substring out of bounds check" }
|
||||||
|
! PR fortran/27588
|
||||||
|
program bound_check
|
||||||
|
character*10 zz
|
||||||
|
i = 2
|
||||||
|
j = i+9
|
||||||
|
zz(i:j) = 'abcdef'
|
||||||
|
print * , zz
|
||||||
|
end
|
||||||
|
! { dg-output "Substring out of bounds: upper bound exceeds string length.*at line 9)}
|
Loading…
Reference in New Issue
Block a user