summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/proc_ptr_48.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/proc_ptr_48.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/proc_ptr_48.f908
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/testsuite/gfortran.dg/proc_ptr_48.f90 b/gcc/testsuite/gfortran.dg/proc_ptr_48.f90
index deed635355b..4984eb7f885 100644
--- a/gcc/testsuite/gfortran.dg/proc_ptr_48.f90
+++ b/gcc/testsuite/gfortran.dg/proc_ptr_48.f90
@@ -25,12 +25,12 @@
actual%boog => boogImplementation
res = actual%boog () ! Failed on bug in expr.c:3933
- if (res%scalar .ne. onenineeight) call abort
+ if (res%scalar .ne. onenineeight) STOP 1
! Make sure that the procedure pointer is assigned correctly
- if (actual%scalar .ne. ninetynine) call abort
+ if (actual%scalar .ne. ninetynine) STOP 2
actual = res%boog ()
- if (actual%scalar .ne. onenineeight) call abort
+ if (actual%scalar .ne. onenineeight) STOP 3
! Deallocate so that we can use valgrind to check for memory leaks
deallocate (res%scalar, actual%scalar)
@@ -44,7 +44,7 @@ contains
C = A
C%scalar = onenineeight
class default
- call abort
+ STOP 4
end select
end function
end