用于进行gcc测试

源代码在线查看: write_logical.f90

软件大小: 6330 K
上传用户: yhw002
关键词: gcc 测试
下载地址: 免注册下载 普通下载 VIP

相关代码

				! 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							

相关资源