Skip to content

Commit

Permalink
Add more tests to run_test_suite.sh
Browse files Browse the repository at this point in the history
Call MARBL_generate_diagnostics_file.py with a few different --diag-mode
options (and write output to different files)
  • Loading branch information
mnlevy1981 committed May 9, 2024
1 parent ccb5031 commit 1971bba
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions MARBL_tools/run_test_suite.sh
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,12 @@ done

# Test MARBL_generate_diagnostics_file.py
cd ${MARBL_ROOT}/MARBL_tools
(set -x ; ./MARBL_generate_diagnostics_file.py --diag-mode none -o marbl.diags.none)
STATUS=$(check_return $?)
print_status "MARBL_generate_diagnostics_file.py --diag-mode none -o marbl.diags.none" >> ${RESULTS_CACHE}
(set -x ; ./MARBL_generate_diagnostics_file.py --diag-mode minimal -o marbl.diags.minimal)
STATUS=$(check_return $?)
print_status "MARBL_generate_diagnostics_file.py --diag-mode minimal marbl.diags.minimal" >> ${RESULTS_CACHE}
(set -x ; ./MARBL_generate_diagnostics_file.py)
STATUS=$(check_return $?)
print_status "MARBL_generate_diagnostics_file.py" >> ${RESULTS_CACHE}
Expand Down

0 comments on commit 1971bba

Please sign in to comment.