Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extend diag_mediator to allow the piecemeal posting of diagnostics #809

Open
wants to merge 7 commits into
base: dev/gfdl
Choose a base branch
from
Open
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
5 changes: 5 additions & 0 deletions src/core/MOM_unit_tests.F90
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ 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 @@ -49,6 +50,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