diff options
author | jvdelisle <jvdelisle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-08-15 23:14:03 +0000 |
---|---|---|
committer | jvdelisle <jvdelisle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-08-15 23:14:03 +0000 |
commit | f363522dedcf9e9f510476b99c69d0d1fca0d3e6 (patch) | |
tree | 8e0f38df8fce02304a61b23a628fbd78e4634ae5 /gcc/testsuite/gfortran.dg/streamio_1.f90 | |
parent | 4d8ee55b7d3fd31406d095afb53a1fac983490c6 (diff) | |
download | gcc-f363522dedcf9e9f510476b99c69d0d1fca0d3e6.tar.gz |
2006-08-15 Jerry DeLisle <jvdelisle@gcc.gnu.org>
PR fortran/25828
* gfortran.dg/streamio_1.f90: New test.
* gfortran.dg/streamio_2.f90: New test.
* gfortran.dg/streamio_3.f90: New test.
* gfortran.dg/streamio_4.f90: New test.
* gfortran.dg/streamio_5.f90: New test.
* gfortran.dg/streamio_6.f90: New test.
* gfortran.dg/streamio_7.f90: New test.
* gfortran.dg/streamio_8.f90: New test.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@116173 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/testsuite/gfortran.dg/streamio_1.f90')
-rw-r--r-- | gcc/testsuite/gfortran.dg/streamio_1.f90 | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gcc/testsuite/gfortran.dg/streamio_1.f90 b/gcc/testsuite/gfortran.dg/streamio_1.f90 new file mode 100644 index 00000000000..5a853fc8e89 --- /dev/null +++ b/gcc/testsuite/gfortran.dg/streamio_1.f90 @@ -0,0 +1,18 @@ +! { dg-do run } +! PR25828 Stream IO test 1 +! Contributed by Jerry DeLisle <jvdelisle@verizon.net>. +PROGRAM stream_io_1 + IMPLICIT NONE + integer(kind=4) i + real(kind=8) r + OPEN(UNIT=11, ACCESS="stream") + WRITE(11) "first" + WRITE(11) "second" + WRITE(11) 1234567 + write(11) 3.14159_8 + read(11, pos=12)i + if (i.ne.1234567) call abort() + read(11) r + if (r-3.14159 .gt. 0.00001) call abort() + CLOSE(UNIT=11, status="delete") +END PROGRAM stream_io_1
\ No newline at end of file |