AArch64: correct constraint on Upl early clobber alternatives
[official-gcc.git] / gcc / testsuite / gfortran.dg / fgetc_1.f90
blobac6b71ce5b154254db4d665ee5c9447e5f27ae07
1 ! Testcase for the FGETC and FPUTC intrinsics
2 ! { dg-do run }
3 character(len=5) s
4 integer st
6 s = "12345"
7 open(10,status="scratch")
8 write(10,"(A)") "abcde"
9 rewind(10)
10 call fgetc(10,s,st)
11 if ((st /= 0) .or. (s /= "a ")) STOP 1
12 call fgetc(10,s,st)
13 close(10)
15 open(10,status="scratch")
16 s = "12345"
17 call fputc(10,s,st)
18 if (st /= 0) STOP 2
19 call fputc(10,"2",st)
20 if (st /= 0) STOP 3
21 call fputc(10,"3 ",st)
22 if (st /= 0) STOP 4
23 rewind(10)
24 call fgetc(10,s)
25 if (s(1:1) /= "1") STOP 5
26 call fgetc(10,s)
27 if (s(1:1) /= "2") STOP 6
28 call fgetc(10,s,st)
29 if ((s(1:1) /= "3") .or. (st /= 0)) STOP 7
30 call fgetc(10,s,st)
31 if (st /= -1) STOP 8
32 close (10)
34 ! FGETC and FPUTC on units not opened should not work
35 call fgetc(12,s,st)
36 if (st /= -1) STOP 9
37 call fputc(12,s,st)
38 if (st /= -1) STOP 10
39 end