This subroutine runs the is_valid__match
function and prints the result.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | pattern | |||
character(len=*), | intent(in) | :: | str | |||
logical, | intent(in) | :: | answer | |||
logical, | intent(inout) | :: | result |
subroutine runner_match(pattern, str, answer, result) implicit none character(*), intent(in) :: pattern, str logical, intent(in) :: answer logical, intent(inout) :: result logical :: res res = is_valid__match(pattern, str, answer) if (res) then if (answer) then write(error_unit, '(a, a, a)') 'result(match): Success', ' '//trim(pattern), ' "'//trim(str)//'"' else write(error_unit, '(a, a, a)') 'result(match): Success', ' '//trim(pattern) end if else write(error_unit, '(a, a, a)') 'result(match): FAILED ' , ' '//trim(pattern),' "'//trim(str)//'"' end if result = result .and. res end subroutine runner_match