1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
! { dg-do run }
subroutine test_lower
implicit none
character(3), dimension(3) :: zsymel,zsymelr
common /xx/ zsymel, zsymelr
integer :: znsymelr
zsymel = (/ 'X', 'Y', ' ' /)
zsymelr= (/ 'X', 'Y', ' ' /)
znsymelr=2
call check_zsymel(zsymel,zsymelr,znsymelr)
contains
subroutine check_zsymel(zsymel,zsymelr,znsymelr)
implicit none
integer znsymelr, isym
character(*) zsymel(*),zsymelr(*)
character(len=80) buf
zsymel(3)(lenstr(zsymel(3))+1:)='X'
write (buf,10) (trim(zsymelr(isym)),isym=1,znsymelr)
10 format(3(a,:,','))
if (trim(buf) /= 'X,Y') call abort
end subroutine check_zsymel
function lenstr(s)
character(len=*),intent(in) :: s
integer :: lenstr
if (len_trim(s) /= 0) call abort
lenstr = len_trim(s)
end function lenstr
end subroutine test_lower
subroutine test_upper
implicit none
character(3), dimension(3) :: zsymel,zsymelr
common /xx/ zsymel, zsymelr
integer :: znsymelr
zsymel = (/ 'X', 'Y', ' ' /)
zsymelr= (/ 'X', 'Y', ' ' /)
znsymelr=2
call check_zsymel(zsymel,zsymelr,znsymelr)
contains
subroutine check_zsymel(zsymel,zsymelr,znsymelr)
implicit none
integer znsymelr, isym
character(*) zsymel(*),zsymelr(*)
character(len=80) buf
zsymel(3)(:lenstr(zsymel(3))+1)='X'
write (buf,20) (trim(zsymelr(isym)),isym=1,znsymelr)
20 format(3(a,:,','))
if (trim(buf) /= 'X,Y') call abort
end subroutine check_zsymel
function lenstr(s)
character(len=*),intent(in) :: s
integer :: lenstr
if (len_trim(s) /= 0) call abort
lenstr = len_trim(s)
end function lenstr
end subroutine test_upper
program test
call test_lower
call test_upper
end program test
|