diff options
Diffstat (limited to 'gcc/testsuite/gfortran.dg/pointer_array_7.f90')
-rw-r--r-- | gcc/testsuite/gfortran.dg/pointer_array_7.f90 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gfortran.dg/pointer_array_7.f90 b/gcc/testsuite/gfortran.dg/pointer_array_7.f90 index 1aa48b7a078..5d0e9f7ae4a 100644 --- a/gcc/testsuite/gfortran.dg/pointer_array_7.f90 +++ b/gcc/testsuite/gfortran.dg/pointer_array_7.f90 @@ -38,9 +38,9 @@ program main call printit(pc, s3) s1 = transfer(c_loc(a(2)%c),s1) - if (s1 /= s3) call abort + if (s1 /= s3) STOP 1 s2 = transfer(c_loc(pc(2)),s2) - if (s2 /= s3) call abort + if (s2 /= s3) STOP 2 end program main |