diff options
Diffstat (limited to 'gcc/testsuite/gfortran.dg/pointer_init_3.f90')
-rw-r--r-- | gcc/testsuite/gfortran.dg/pointer_init_3.f90 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/testsuite/gfortran.dg/pointer_init_3.f90 b/gcc/testsuite/gfortran.dg/pointer_init_3.f90 index a91e518cc4b..37b89f77a2e 100644 --- a/gcc/testsuite/gfortran.dg/pointer_init_3.f90 +++ b/gcc/testsuite/gfortran.dg/pointer_init_3.f90 @@ -28,15 +28,15 @@ integer, pointer :: dp2 => vec(2) integer, pointer :: dp3 => u%i dp = 5 -if (i0/=5) call abort() +if (i0/=5) STOP 1 u%dpc = 6 -if (i0/=6) call abort() +if (i0/=6) STOP 2 dp2 = 3 -if (vec(2)/=3) call abort() +if (vec(2)/=3) STOP 3 dp3 = 4 -if (u%i/=4) call abort() +if (u%i/=4) STOP 4 end |