Skip to content

Commit

Permalink
Update run_test_suite.sh script
Browse files Browse the repository at this point in the history
1. Skip marbl_with_ladjust_bury_coeff.settings when running init (since it
should fail due to lgcm_has_global_ops = .false.)
2. Run new bury_coeff test
  • Loading branch information
mnlevy1981 committed Sep 17, 2024
1 parent 6152237 commit 0b27bca
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions MARBL_tools/run_test_suite.sh
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,9 @@ if [ "${STATUS}" == "PASS" ]; then
print_status "init.py" >> ${RESULTS_CACHE}
# Initialize MARBL with settings from tests/input_files/settings/
for settingsfile in `find ../../input_files/settings -type f`; do
if [ "`basename $settingsfile`" == "marbl_with_ladjust_bury_coeff.settings" ]; then
continue
fi
(set -x ; ./init.py -s $settingsfile)
STATUS=$(check_return $?)
print_status "init.py ($(basename ${settingsfile}))" >> ${RESULTS_CACHE}
Expand Down Expand Up @@ -362,6 +365,12 @@ if [ "${STATUS}" == "PASS" ]; then
STATUS=$(check_return $?)
print_status "requested_tracers.py" >> ${RESULTS_CACHE}

# Print all fields MARBL needs running means of
cd ${MARBL_ROOT}/tests/regression_tests/bury_coeff
(set -x ; ./bury_coeff.py)
STATUS=$(check_return $?)
print_status "bury_coeff.py" >> ${RESULTS_CACHE}

# Print all output_for_GCM variables
cd ${MARBL_ROOT}/tests/regression_tests/available_output
(set -x ; ./available_output.py)
Expand Down

0 comments on commit 0b27bca

Please sign in to comment.