summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/defined_assignment_1.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/defined_assignment_1.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/defined_assignment_1.f906
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/testsuite/gfortran.dg/defined_assignment_1.f90 b/gcc/testsuite/gfortran.dg/defined_assignment_1.f90
index da06f26d191..5733ea20838 100644
--- a/gcc/testsuite/gfortran.dg/defined_assignment_1.f90
+++ b/gcc/testsuite/gfortran.dg/defined_assignment_1.f90
@@ -76,15 +76,15 @@ program main
! Test the reported problem.
infant0 = new_child()
- if (infant0%parent%foo%i .ne. 20) call abort
+ if (infant0%parent%foo%i .ne. 20) STOP 1
! Test the case of comment #1 of the PR.
infant1 = newchild1
- if (infant1%foo%i .ne. 21) call abort
+ if (infant1%foo%i .ne. 21) STOP 2
! Test the case of comment #2 of the PR.
infant2 = newchild2
- if (infant2%foo%i .ne. 2) call abort
+ if (infant2%foo%i .ne. 2) STOP 3
end