X-Git-Url: https://oss.titaniummirror.com/gitweb/?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fg77.dg%2Ff77-edit-i-in.f;fp=gcc%2Ftestsuite%2Fg77.dg%2Ff77-edit-i-in.f;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=0ce564624d834c7746a52054d5d4ca7e95e1b3ae;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/g77.dg/f77-edit-i-in.f b/gcc/testsuite/g77.dg/f77-edit-i-in.f deleted file mode 100644 index 0ce56462..00000000 --- a/gcc/testsuite/g77.dg/f77-edit-i-in.f +++ /dev/null @@ -1,26 +0,0 @@ -C Test Fortran 77 I edit descriptor for input -C (ANSI X3.9-1978 Section 13.5.9.1) -C -C Origin: David Billinghurst -C -C Scratch files aren't implemented for most simulators; usually a -C stub function returns an error code. -C { dg-do run { xfail mmix-knuth-mmixware cris-*-elf } } - integer i,j - - open(unit=10,status='SCRATCH') - write(10,'(A)') '1' - write(10,'(A)') ' ' - write(10,'(A)') ' -1' - - rewind(10) - - read(10,'(I1)') i - if ( i.ne.1 ) call abort() - read(10,'(I1)') i - if ( i.ne.0 ) call abort() - read(10,'(I2,X,I2)') i,j - if ( i.ne.0 ) call abort() - if ( j.ne.-1 ) call abort() - - end