volatile_doctest Program

Uses

  • program~~volatile_doctest~111~~UsesGraph program~volatile_doctest~111 volatile_doctest module~stringifor stringifor program~volatile_doctest~111->module~stringifor module~stringifor_string_t stringifor_string_t module~stringifor->module~stringifor_string_t penf penf module~stringifor->penf module~stringifor_string_t->penf befor64 befor64 module~stringifor_string_t->befor64 face face module~stringifor_string_t->face iso_fortran_env iso_fortran_env module~stringifor_string_t->iso_fortran_env

Calls

program~~volatile_doctest~111~~CallsGraph program~volatile_doctest~111 volatile_doctest proc~read_file stringifor::read_file program~volatile_doctest~111->proc~read_file proc~write_file stringifor::write_file program~volatile_doctest~111->proc~write_file chars chars proc~read_file->chars proc~read_lines stringifor::read_lines proc~read_file->proc~read_lines upper upper proc~read_file->upper proc~write_file->chars proc~write_lines stringifor::write_lines proc~write_file->proc~write_lines proc~write_file->upper proc~read_lines->chars proc~read_lines->upper

Contents

Source Code


Variables

Type Attributes Name Initial
type(string) :: astring
type(string) :: anotherstring
type(string), allocatable :: strings(:)
type(string) :: line(3)
integer :: iostat
character(len=99) :: iomsg
integer :: scratch
integer :: l
logical :: test_passed(8)

Source Code

program volatile_doctest
use stringifor
 type(string) :: astring
 type(string) :: anotherstring
 type(string), allocatable :: strings(:)
 type(string) :: line(3)
 integer :: iostat
 character(len=99) :: iomsg
 integer :: scratch
 integer :: l
 logical :: test_passed(8)
 line(1) = ' Hello World!   '
 line(2) = 'How are you?  '
 line(3) = '   All say: "Fine thanks"'
 anotherstring = anotherstring%join(array=line, sep=new_line('a'))
 call write_file(file='write_file_test.tmp', lines=line, iostat=iostat, iomsg=iomsg)
 call astring%read_file(file='write_file_test.tmp', iostat=iostat, iomsg=iomsg)
 call astring%split(tokens=strings, sep=new_line('a'))
 test_passed(1) = (size(strings, dim=1)==size(line, dim=1))
 do l=1, size(strings, dim=1)
 test_passed(l+1) = (strings(l)==line(l))
 enddo
 call write_file(file='write_file_test.tmp', lines=line, form='unformatted', iostat=iostat, iomsg=iomsg)
 call astring%read_file(file='write_file_test.tmp', form='unformatted', iostat=iostat, iomsg=iomsg)
 call astring%split(tokens=strings, sep=new_line('a'))
 test_passed(5) = (size(strings, dim=1)==size(line, dim=1))
 do l=1, size(strings, dim=1)
 test_passed(l+5) = (strings(l)==line(l))
 enddo
 open(newunit=scratch, file='write_file_test.tmp')
 close(scratch, status='DELETE')
 print '(L1)', all(test_passed)
endprogram volatile_doctest