program ESMF_LogErrUTest
!------------------------------------------------------------------------------
#include "ESMF_Macros.inc"
#include "ESMF.h"
!==============================================================================
!BOP
! !PROGRAM: ESMF_LogErrHaltUTest - This test verifies the Halt on Error feature.
!
! !DESCRIPTION:
!
! The code in this file drives F90 LogErr halt on Error unit tests.
! The companion file ESMF\_LogErr.F90 contains the definitions for the
! LogErr methods.
!
!-----------------------------------------------------------------------------
! !USES:
use ESMF_TestMod ! test methods
use ESMF
implicit none
!------------------------------------------------------------------------------
! The following line turns the CVS identifier string into a printable variable.
character(*), parameter :: version = &
'$Id$'
!------------------------------------------------------------------------------
! cumulative result: count failures; no failures equals "all pass"
integer :: result = 0
! individual test result code
integer :: rc
! individual test failure message
character(ESMF_MAXSTR) :: failMsg
character(ESMF_MAXSTR) :: name
! !LOCAL VARIABLES:
type(ESMF_Field) :: field1
character(ESMF_MAXSTR) :: field1name
!------------------------------------------------------------------------------
! The unit tests are divided into Sanity and Exhaustive. The Sanity tests are
! always run. When the environment variable, EXHAUSTIVE, is set to ON then
! the EXHAUSTIVE and sanity tests both run. If the EXHAUSTIVE variable is set
! to OFF, then only the sanity unit tests.
! Special strings (Non-exhaustive and exhaustive) have been
! added to allow a script to count the number and types of unit tests.
!------------------------------------------------------------------------------
print *, "Starting LogErr Tests"
call ESMF_TestStart(ESMF_SRCLINE, rc=rc)
if (rc /= ESMF_SUCCESS) call ESMF_Finalize(endflag=ESMF_END_ABORT)
#ifdef ESMF_TESTEXHAUSTIVE
!------------------------------------------------------------------------
!EX_removeUTest
! Set Log HaltOnError
write(failMsg, *) "Did not return ESMF_SUCCESS"
call ESMF_LogSet(halt=ESMF_LOG_HALTERROR, rc=rc)
write(name, *) "Log Set Halt on Error Test"
call ESMF_Test((rc.eq.ESMF_SUCCESS), name, failMsg, result, ESMF_SRCLINE)
print *, " rc = ", rc
!------------------------------------------------------------------------
!EX_removeUTest
! Query a deleted Field to intentionally create an error to test the
! halt on error feature. Execution should halt inside ESMF_FieldGet().
! Print a pass first assuming that execution will stop.
field1 = ESMF_FieldCreateNoData()
call ESMF_FieldDestroy(field1)
write(failMsg, *) "Should never fail."
write(name, *) "Force an Error Test"
call ESMF_Test((.true.), name, failMsg, result, ESMF_SRCLINE)
call ESMF_FieldGet(field1, name=field1name, rc=rc)
! If the following code is executed, the HALT ON ERROR test failed.
! Print a special Fail message which will be handled by the test scripts.
write(failMsg, *) "The Halt on Error test failed."
write(name, *) "HALT_FAILED"
call ESMF_Test((.false.), name, failMsg, result, ESMF_SRCLINE)
#endif
call ESMF_TestEnd(ESMF_SRCLINE)
end program ESMF_LogErrUTest