summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/constructor_3.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/constructor_3.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/constructor_3.f904
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gfortran.dg/constructor_3.f90 b/gcc/testsuite/gfortran.dg/constructor_3.f90
index badff3f6af5..a0d726adc18 100644
--- a/gcc/testsuite/gfortran.dg/constructor_3.f90
+++ b/gcc/testsuite/gfortran.dg/constructor_3.f90
@@ -38,8 +38,8 @@ type(cons) :: x
integer :: k
x = cons(3)
k = cons()
-if (x%j /= 9) call abort ()
-if (k /= 42) call abort ()
+if (x%j /= 9) STOP 1
+if (k /= 42) STOP 2
!print *, x%j
!print *, k
end