jf_test_3 Program

program~~jf_test_3~~UsesGraph program~jf_test_3 jf_test_3 module~jf_test_3_mod jf_test_3_mod module~jf_test_3_mod->program~jf_test_3 module~json_module json_module module~json_module->module~jf_test_3_mod iso_fortran_env iso_fortran_env iso_fortran_env->module~jf_test_3_mod iso_fortran_env->module~json_module
Help


Third unit test.

Calls

program~~jf_test_3~~CallsGraph program~jf_test_3 jf_test_3 proc~test_3 test_3 program~jf_test_3->proc~test_3 proc~json_initialize json_initialize proc~test_3->proc~json_initialize proc~json_failed json_failed proc~test_3->proc~json_failed proc~json_print_error_message json_print_error_message proc~test_3->proc~json_print_error_message proc~json_clear_exceptions json_clear_exceptions proc~json_initialize->proc~json_clear_exceptions interface~throw_exception throw_exception proc~json_initialize->interface~throw_exception proc~json_print_error_message->proc~json_clear_exceptions proc~json_check_for_errors json_check_for_errors proc~json_print_error_message->proc~json_check_for_errors proc~json_throw_exception json_throw_exception interface~throw_exception->proc~json_throw_exception
Help

Variables

Type AttributesNameInitial
integer :: n_errors

Source Code

program jf_test_3

    !! Third unit test.
    
    use jf_test_3_mod , only: test_3
    implicit none
    integer :: n_errors
    n_errors = 0
    call test_3(n_errors)
    if (n_errors /= 0) stop 1
end program jf_test_3