34 &
'FORTRANF77 V1.0 Fortran I/O test routines')
35 character*(*) FORTRANF77_CVS_ID
38 logical optread,optwrite
44 parameter(cmagic=
'ABCD')
47 equivalence(inmagic, incmagic)
51 integer val1(mval),val2(mval)
52 double precision dval(mval)
60 integer maxopt, lastarg, iargc
63 character*2 optid(maxopt)
64 character*80 optarg(maxopt)
65 logical optset(maxopt), opthasarg(maxopt)
67 logical debug, verbose
69 data optid/2h-d, 2h-v, 2h-r, 2h-w/
70 data opthasarg/2*.false.,2*.true./
71 data optarg/2*1h-,2*4hjunk/
78 if (iargc().eq.1)
call getarg(1, argument)
79 if ((argument(1:5).eq.
'-help').or.(iargc().lt.2))
then 81 print *,
'Usage: fortranF77 -r file|-w file [-v]' 82 print *,
' or: fortranF77 -help' 83 if (argument(1:5).ne.
'-help')
84 & stop
'ERROR: wrong number of arguments' 86 print *,
'-v be verbose' 87 print *,
'-r file read from file created by fortraniotest' 88 print *,
'-w file write file to be read by fortraniotest' 90 print *,fortranf77_cvs_id
97 call tf_cmdline(1, lastarg, maxopt, optid,
98 & optarg, optset, opthasarg)
106 elseif (optwrite)
then 109 stop
'ERROR: you must either set -r or -w!' 117 print *,fortranf77_cvs_id
123 print *,
'reading from ',filename(1:index(filename,
' ')-1)
125 open(lu, file=filename, form=
'unformatted',
126 & status=
'old', err=96)
127 read(lu, err=95, end=94) inmagic
128 call tf_bytesex(cmagic, inmagic, icpu, imatch)
129 print *,
'read magic number: ''',incmagic,
', ',inmagic,
'''' 131 print *,
' I''m running on Intel' 132 elseif (icpu.eq.2)
then 133 print *,
' I''m running on Motorola' 135 print *,
' I don''t know this CPU model' 136 stop
'ERROR: aborting...' 138 if (imatch.eq.1)
then 139 print *,
' file data matches CPU model' 140 elseif (icpu.eq.2)
then 141 print *,
' file data must be swapped to match CPU' 142 stop
'ERROR: cannot perform swapping' 144 print *,
' I do not know about the data encoding' 145 stop
'ERROR: aborting...' 147 read(lu, err=95, end=94) nval, (val1(i), val2(i), i=1,nval)
148 read(lu, err=95, end=94) (dval(i), i=1,nval)
149 read(lu, err=98, end=94) llint,lint,dcplx,scplx
150 print *,
' nval: ',nval
151 print 50, (val1(i), val2(i), i=1,nval)
152 print 51, (dval(i), i=1,nval)
153 print *,
'extra:', llint,lint,dcplx,scplx
157 print *,
'writing to ',filename(1:index(filename,
' ')-1)
159 open(lu, file=filename, form=
'unformatted', err=99)
160 call tf_magic(cmagic, imagic)
161 print *,
'writing magic number: ''',cmagic,
', ',imagic,
'''' 162 write(lu, err=98) imagic
167 dval(i)=dble(i)*15.d0
171 scplx=(14.5d0,15.4d0)
173 write(lu, err=98) nval, (val1(i), val2(i), i=1,nval)
174 write(lu, err=98) (dval(i), i=1,nval)
175 write(lu, err=98) llint,lint,dcplx,scplx
176 print *,
' nval: ',nval
177 print 50, (val1(i), val2(i), i=1,nval)
178 print 51, (dval(i), i=1,nval)
179 print *,
'extra:', llint,lint,dcplx,scplx
184 50
format(2x,
'val1/2:',2(1x,i10))
185 51
format(2x,
'val: ',f10.3)
186 99 stop
'ERROR: opening for writing' 187 98 stop
'ERROR: writing' 188 97 stop
'ERROR: closing' 189 96 stop
'ERROR: opening for reading' 190 95 stop
'ERROR: reading' 191 94 stop
'ERROR: reading - unexpected end'