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_7.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_7.f90')
-rw-r--r-- | gcc/testsuite/gfortran.dg/streamio_7.f90 | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gcc/testsuite/gfortran.dg/streamio_7.f90 b/gcc/testsuite/gfortran.dg/streamio_7.f90 new file mode 100644 index 00000000000..7a7b2771282 --- /dev/null +++ b/gcc/testsuite/gfortran.dg/streamio_7.f90 @@ -0,0 +1,18 @@ +! { dg-do run } +! PR25828 Stream IO test 7, Array writes and reads. +! Contributed by Jerry DeLisle <jvdelisle@verizon.net>. +program streamtest + implicit none + character(1) :: lf = char(10) + character(1) :: tchar + integer :: i,j,k + real(kind=4), dimension(100,100) :: anarray + open(10, file="teststream", access="stream", form="unformatted") + anarray = 3.14159 + write(10) anarray + anarray = 0.0 + read(10, pos=1) anarray + anarray = abs(anarray - 3.14159) + if (any(anarray.gt.0.00001)) call abort() + close(10,status="delete") +end program streamtest
\ No newline at end of file |