Commit d97a4451 by Francois-Xavier Coudert Committed by François-Xavier Coudert

fseek.f90: Take care of Windows CRLF line terminator.

	* gfortran.dg/fseek.f90: Take care of Windows CRLF line
	terminator.

From-SVN: r135161
parent 7b27fa76
2008-05-10 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
* gfortran.dg/fseek.f90: Take care of Windows CRLF line
terminator.
2008-05-10 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
* gfortran.dg/fmt_t_5.f90: Take care of Windows CRLF line
terminator.
......@@ -3,10 +3,18 @@
PROGRAM test_fseek
INTEGER, PARAMETER :: SEEK_SET = 0, SEEK_CUR = 1, SEEK_END = 2, fd=10
INTEGER :: ierr = 0
INTEGER :: newline_length
! expected position: 12, one leading blank + 10 + newline
! We first need to determine if a newline is one or two characters
open (911,status="scratch")
write(911,"()")
newline_length = ftell(911)
close (911)
if (newline_length < 1 .or. newline_length > 2) call abort()
! expected position: one leading blank + 10 + newline
WRITE(fd, *) "1234567890"
IF (FTELL(fd) /= 12) CALL abort()
IF (FTELL(fd) /= 11 + newline_length) CALL abort()
! move backward from current position
CALL FSEEK(fd, -12, SEEK_CUR, ierr)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment