aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/trim_1.f90
blob: ac1e1f2032dd9eceb067e27480e58201e3dc4c70 (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
! { dg-do run }

! Torture-test TRIM and LEN_TRIM for correctness.


! Given a total string length and a trimmed length, construct an
! appropriate string and check gfortran gets it right.

SUBROUTINE check_trim (full_len, trimmed_len)
  IMPLICIT NONE
  INTEGER, INTENT(IN) :: full_len, trimmed_len
  CHARACTER(LEN=full_len) :: string

  string = ""
  IF (trimmed_len > 0) THEN
    string(trimmed_len:trimmed_len) = "x"
  END IF

  IF (LEN (string) /= full_len &
      .OR. LEN_TRIM (string) /= trimmed_len &
      .OR. LEN (TRIM (string)) /= trimmed_len &
      .OR. TRIM (string) /= string (1:trimmed_len)) THEN
    PRINT *, full_len, trimmed_len
    PRINT *, LEN (string), LEN_TRIM (string)
    CALL abort ()
  END IF
END SUBROUTINE check_trim


! The main program, check with various combinations.

PROGRAM main
  IMPLICIT NONE
  INTEGER :: i, j

  DO i = 0, 20
    DO j = 0, i
      CALL check_trim (i, j)
    END DO
  END DO
END PROGRAM main