aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/f_c_string1.f90
blob: 00f319fba2e154891895ea83e4447f33ae8fd9f5 (plain)
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
!
! { dg-do run }
!
! PR117643 F_C_STRING from F23 is missing.
! Test case and initial patch provided by Steve Kargl.
program foo

   use iso_c_binding, only : c_null_char, c_char, f_c_string, c_size_t

   implicit none

   logical asis
   character(len=6, kind=c_char) :: s1
   character(len=:, kind=c_char), allocatable :: s2

   interface
      !
      ! strlen() counts up to '\0', and excludes it from the count
      !
      function strlen(s) bind(c,name="strlen")
         import c_char, c_size_t
         integer(c_size_t) strlen
         character(len=1,kind=c_char), intent(in) :: s(*)
      end function strlen
   end interface

   s1 = 'abc   '
   s2 = f_c_string(s1)
   if (len_trim(s1) /= int(strlen(s2), 4)) stop 1

   s1 = ' ghij '
   s2 = f_c_string(s1)
   if (len_trim(s1) /= int(strlen(s2), 4)) stop 2

   s2 = f_c_string(s1, .true.)
   if (len(s1) /= int(strlen(s2), 4)) stop 3

   s2 = f_c_string(s1, .false.)
   if (len_trim(s1) /= int(strlen(s2), 4)) stop 4

   asis = .true.
   s2 = f_c_string(s1, asis)
   if (len(s1) /= int(strlen(s2), 4)) stop 5

   asis = .false.
   s2 = f_c_string(s1, asis)
   if (len_trim(s1) /= int(strlen(s2), 4)) stop 6

end program foo