summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/namelist_21.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/namelist_21.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/namelist_21.f9016
1 files changed, 8 insertions, 8 deletions
diff --git a/gcc/testsuite/gfortran.dg/namelist_21.f90 b/gcc/testsuite/gfortran.dg/namelist_21.f90
index de88200c167..da0428b75ea 100644
--- a/gcc/testsuite/gfortran.dg/namelist_21.f90
+++ b/gcc/testsuite/gfortran.dg/namelist_21.f90
@@ -23,21 +23,21 @@ program pr24794
rewind (12)
read (12, nml=ccsopr, iostat=ier)
- if (ier.ne.0) call abort()
+ if (ier.ne.0) STOP 1
rewind (12)
write(12,nml=ccsopr)
rewind (12)
read (12, nml=ccsopr, iostat=ier)
- if (ier.ne.0) call abort()
+ if (ier.ne.0) STOP 2
- if (namea(2).ne."spi02o ") call abort()
- if (namea(9).ne." ") call abort()
- if (namea(15).ne." ") call abort()
- if (nameb(1).ne."spi01h ") call abort()
- if (nameb(6).ne." ") call abort()
- if (nameb(15).ne." ") call abort()
+ if (namea(2).ne."spi02o ") STOP 3
+ if (namea(9).ne." ") STOP 4
+ if (namea(15).ne." ") STOP 5
+ if (nameb(1).ne."spi01h ") STOP 6
+ if (nameb(6).ne." ") STOP 7
+ if (nameb(15).ne." ") STOP 8
close (12)
end program pr24794