Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed
arrows point from an interface to procedures which implement that interface.
This could include the module procedures in a generic interface or the
implementation in a submodule of an interface in a parent module.
Where possible, edges connecting nodes are
given different colours to make them easier to distinguish in
large graphs.
Source Code
subroutine Test_MAPL_GetResource_array_real4()type(ESMF_Config)::configinteger::statusreal(kind=real32)::expected(4),actual(4)character(len=*),parameter::LABEL='label'character(len=*),parameter::VAL='1.0 2.0 3.0 4.0'logical::value_is_setcharacter(len=MAX_LINE_LENGTH)::output_stringexpected=[1.0,2.0,3.0,4.0]config=ESMF_ConfigCreate(rc=status)@assertEqual(0,status,'Failed to create ESMF_Config')call ESMF_ConfigSetAttribute(config,PRINT_ALL,label='PRINTRC:',rc=status)@assertEqual(0,status,'Failed to set PRINTRC')call ESMF_ConfigSetAttribute(config,VAL,label=LABEL,rc=status)@assertEqual(0,status,'Failed to set attribute')call MAPL_GetResource_config_array(config,actual,label=LABEL,value_is_set=value_is_set,iunit=output_string,rc=status)@assertEqual(0,status,'Failed to get resource')@assertEqual(expected,actual,'actual does not match expected.')end subroutine Test_MAPL_GetResource_array_real4