summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/unlimited_polymorphic_13.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/unlimited_polymorphic_13.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/unlimited_polymorphic_13.f9012
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/testsuite/gfortran.dg/unlimited_polymorphic_13.f90 b/gcc/testsuite/gfortran.dg/unlimited_polymorphic_13.f90
index 8225738e743..308ea59760d 100644
--- a/gcc/testsuite/gfortran.dg/unlimited_polymorphic_13.f90
+++ b/gcc/testsuite/gfortran.dg/unlimited_polymorphic_13.f90
@@ -40,26 +40,26 @@ contains
case (real_kinds(size(real_kinds)))
sz = storage_size(r4)*2
end select
- if (sz .eq. 0) call abort()
+ if (sz .eq. 0) STOP 1
- if (storage_size(o) /= sz) call abort()
+ if (storage_size(o) /= sz) STOP 2
! Break up the SELECT TYPE to pre-empt collisions in the value of 'cn'
select type (o)
type is (complex(c1))
- if (storage_size(o) /= sz) call abort()
+ if (storage_size(o) /= sz) STOP 3
end select
select type (o)
type is (complex(c2))
- if (storage_size(o) /= sz) call abort()
+ if (storage_size(o) /= sz) STOP 4
end select
select type (o)
type is (complex(c3))
- if (storage_size(o) /= sz) call abort()
+ if (storage_size(o) /= sz) STOP 5
end select
select type (o)
type is (complex(c4))
- if (storage_size(o) /= sz) call abort()
+ if (storage_size(o) /= sz) STOP 6
end select
end subroutine s
end module m