URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gfortran.fortran-torture/] [execute/] [write_logical.f90] - Rev 378
Go to most recent revision | Compare with Previous | Blame | View Log
! 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
Go to most recent revision | Compare with Previous | Blame | View Log