diff options
Diffstat (limited to 'gcc/testsuite/gfortran.dg/pointer_init_5.f90')
-rw-r--r-- | gcc/testsuite/gfortran.dg/pointer_init_5.f90 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gfortran.dg/pointer_init_5.f90 b/gcc/testsuite/gfortran.dg/pointer_init_5.f90 index 1ca773874a2..befb1fe085c 100644 --- a/gcc/testsuite/gfortran.dg/pointer_init_5.f90 +++ b/gcc/testsuite/gfortran.dg/pointer_init_5.f90 @@ -34,7 +34,7 @@ implicit none type (t) :: u -if (pp()/=42) call abort() -if (u%ppc()/=43) call abort() +if (pp()/=42) STOP 1 +if (u%ppc()/=43) STOP 2 end |