summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/dtio_27.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/dtio_27.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/dtio_27.f904
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gfortran.dg/dtio_27.f90 b/gcc/testsuite/gfortran.dg/dtio_27.f90
index b8b6bad98f5..677ef5cece3 100644
--- a/gcc/testsuite/gfortran.dg/dtio_27.f90
+++ b/gcc/testsuite/gfortran.dg/dtio_27.f90
@@ -51,7 +51,7 @@ contains
namelist /n1/ x
x = t('a')
write (buffer, n1)
- if (buffer(2) /= " X=a") call abort()
+ if (buffer(2) /= " X=a") STOP 1
end subroutine
subroutine test_class
@@ -59,7 +59,7 @@ contains
namelist /n2/ y
y = t('b')
write (buffer, n2)
- if (buffer(2) /= " Y=b") call abort()
+ if (buffer(2) /= " Y=b") STOP 2
end subroutine
END