aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.fortran-torture/execute/write_logical.f90
blob: 4e0060702f3185a8b0279104785f50ff8cce276a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
! PR 14334, L edit descriptor does not work
!
!  this test uses L1 and L4 to print TRUE and FALSE
       logical true,false
       character*10 b
       true = .TRUE.
       false = .FALSE.
       b = ''
       write (b, '(L1)') true
       if (b(1:1) .ne. 'T') call abort

       b = ''
       write (b, '(L1)') false
       if (b(1:1) .ne. 'F') call abort

       b = ''
       write(b, '(L4)') true
       if (b(1:4) .ne. '   T') call abort

       b = ''
       write(b, '(L4)') false
       if (b(1:4) .ne. '   F') call abort
       end