Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/core/MOM_unit_tests.F90
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
!> Invokes unit tests in all modules that have them
module MOM_unit_tests

! This file is part of MOM6. See LICENSE.md for the license.

use MOM_diag_buffers, only : diag_buffer_unit_tests_2d, diag_buffer_unit_tests_3d
use MOM_error_handler, only : MOM_error, FATAL, is_root_pe
use MOM_hor_bnd_diffusion, only : near_boundary_unit_tests
use MOM_intrinsic_functions, only : intrinsic_functions_unit_tests
Expand Down Expand Up @@ -51,6 +54,10 @@ subroutine unit_tests(verbosity)
"MOM_unit_tests: CFC_cap_unit_tests FAILED")
if (mixedlayer_restrat_unit_tests(verbose)) call MOM_error(FATAL, &
"MOM_unit_tests: mixedlayer_restrat_unit_tests FAILED")
if (diag_buffer_unit_tests_2d(verbose)) call MOM_error(FATAL, &
"MOM_unit_tests: diag_buffer_unit_tests_2d FAILED")
if (diag_buffer_unit_tests_3d(verbose)) call MOM_error(FATAL, &
"MOM_unit_tests: diag_buffer_unit_tests_3d FAILED")
endif

end subroutine unit_tests
Expand Down
Loading
Loading