Skip to content

Commit

Permalink
test_parse_variables is a serial program
Browse files Browse the repository at this point in the history
  • Loading branch information
hkershaw-brown committed Feb 3, 2025
1 parent 3838d55 commit a95013b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions developer_tests/namelist/test_parse_variables.f90
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

program test_parse_variables

use utilities_mod, only : find_namelist_in_file, check_namelist_read
use mpi_utilities_mod, only : initialize_mpi_utilities, finalize_mpi_utilities
use utilities_mod, only : find_namelist_in_file, check_namelist_read, &
initialize_utilities, finalize_utilities
use types_mod, only : vtablenamelength, MISSING_R8, r8
use default_model_mod, only : parse_variables_clamp, parse_variables, &
state_var_type, &
Expand All @@ -30,7 +30,7 @@ program test_parse_variables
namelist /model_nml_clamp/ &
state_variables_clamp

call initialize_mpi_utilities('test_parse_variables')
call initialize_utilities('test_parse_variables')

call plan(28)

Expand Down Expand Up @@ -80,6 +80,6 @@ program test_parse_variables
call ok(state_vars_clamp%updates(2) .eqv. .false.)
call ok(state_vars_clamp%updates(3) .eqv. .true.)

call finalize_mpi_utilities()
call finalize_utilities()

end program test_parse_variables
2 changes: 1 addition & 1 deletion developer_tests/namelist/work/quickbuild.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ dev_test=1
TEST="namelist"
LOCATION="threed_sphere"

programs=(
serial_programs=(
test_parse_variables
)

Expand Down

0 comments on commit a95013b

Please sign in to comment.