summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/derived_constructor_char_3.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/derived_constructor_char_3.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/derived_constructor_char_3.f904
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gfortran.dg/derived_constructor_char_3.f90 b/gcc/testsuite/gfortran.dg/derived_constructor_char_3.f90
index e23878541bb..4daa02b9f93 100644
--- a/gcc/testsuite/gfortran.dg/derived_constructor_char_3.f90
+++ b/gcc/testsuite/gfortran.dg/derived_constructor_char_3.f90
@@ -15,12 +15,12 @@
if (DepEcoSystem%name /= "Gridxxxx" &
.or. DepEcoSystem%name(9:9) /= ' ' &
- .or. DepEcoSystem%name(10:10) /= ' ') call abort()
+ .or. DepEcoSystem%name(10:10) /= ' ') STOP 1
DepEcoSystem%name = 'ABCDEFGHIJ'
call Init_EcoSystems()
if (DepEcoSystem%name /= "StringYY" &
.or. DepEcoSystem%name(9:9) /= ' ' &
- .or. DepEcoSystem%name(10:10) /= ' ') call abort()
+ .or. DepEcoSystem%name(10:10) /= ' ') STOP 2
contains
subroutine Init_EcoSystems()