summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/direct_io_5.f90
diff options
context:
space:
mode:
authorupstream source tree <ports@midipix.org>2015-03-15 20:14:05 -0400
committerupstream source tree <ports@midipix.org>2015-03-15 20:14:05 -0400
commit554fd8c5195424bdbcabf5de30fdc183aba391bd (patch)
tree976dc5ab7fddf506dadce60ae936f43f58787092 /gcc/testsuite/gfortran.dg/direct_io_5.f90
downloadcbb-gcc-4.6.4-554fd8c5195424bdbcabf5de30fdc183aba391bd.tar.bz2
cbb-gcc-4.6.4-554fd8c5195424bdbcabf5de30fdc183aba391bd.tar.xz
obtained gcc-4.6.4.tar.bz2 from upstream website;upstream
verified gcc-4.6.4.tar.bz2.sig; imported gcc-4.6.4 source tree from verified upstream tarball. downloading a git-generated archive based on the 'upstream' tag should provide you with a source tree that is binary identical to the one extracted from the above tarball. if you have obtained the source via the command 'git clone', however, do note that line-endings of files in your working directory might differ from line-endings of the respective files in the upstream repository.
Diffstat (limited to 'gcc/testsuite/gfortran.dg/direct_io_5.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/direct_io_5.f9033
1 files changed, 33 insertions, 0 deletions
diff --git a/gcc/testsuite/gfortran.dg/direct_io_5.f90 b/gcc/testsuite/gfortran.dg/direct_io_5.f90
new file mode 100644
index 000000000..621399844
--- /dev/null
+++ b/gcc/testsuite/gfortran.dg/direct_io_5.f90
@@ -0,0 +1,33 @@
+! { dg-do run }
+! PR27757 Problems with direct access I/O
+! This test checks a series of random writes followed by random reads.
+! Contributed by Jerry DeLisle <jvdelisle@gcc.gnu.org>
+
+program testdirect
+ implicit none
+ integer, dimension(100) :: a
+ integer :: i,j,k,ier
+ real :: x
+ data a / 13, 9, 34, 41, 25, 98, 6, 12, 11, 44, 79, 3,&
+ & 64, 61, 77, 57, 59, 2, 92, 38, 71, 64, 31, 60, 28, 90, 26,&
+ & 97, 47, 26, 48, 96, 95, 82, 100, 90, 45, 71, 71, 67, 72,&
+ & 76, 94, 49, 85, 45, 100, 22, 96, 48, 13, 23, 40, 14, 76, 99,&
+ & 96, 90, 65, 2, 8, 60, 96, 19, 45, 1, 100, 48, 91, 20, 92,&
+ & 72, 81, 59, 24, 37, 43, 21, 54, 68, 31, 19, 79, 63, 41,&
+ & 42, 12, 10, 62, 43, 9, 30, 9, 54, 35, 4, 5, 55, 3, 94 /
+
+ open(unit=15,file="testdirectio",access="direct",form="unformatted",recl=89)
+ do i=1,100
+ k = a(i)
+ write(unit=15, rec=k) k
+ enddo
+ do j=1,100
+ read(unit=15, rec=a(j), iostat=ier) k
+ if (ier.ne.0) then
+ call abort()
+ else
+ if (a(j) /= k) call abort()
+ endif
+ enddo
+ close(unit=15, status="delete")
+end program testdirect \ No newline at end of file