summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/eor_handling_2.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/eor_handling_2.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/eor_handling_2.f902
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gfortran.dg/eor_handling_2.f90 b/gcc/testsuite/gfortran.dg/eor_handling_2.f90
index 9ae56384695..6c03974cf4b 100644
--- a/gcc/testsuite/gfortran.dg/eor_handling_2.f90
+++ b/gcc/testsuite/gfortran.dg/eor_handling_2.f90
@@ -8,6 +8,6 @@ program main
rewind(77)
read(77,'(10A1)'), c1 ! { dg-warning "Comma before i/o item list" }
read(77,'(10A1)'), c2 ! { dg-warning "Comma before i/o item list" }
- if (c1(1) /= 'L' .or. c2(1) /= 'L') call abort
+ if (c1(1) /= 'L' .or. c2(1) /= 'L') STOP 1
close(77)
end program main