Mushy Layer
1.0
|
This directory contains regression tests. The idea is to run a simulation and check that the output hasn't changed (hasn't 'regressed'). Assuming the original output was correct, the program still works.
We compare either the text output (e.g pout.0
or diagnostics.csv
) and/or the data output (.hdf5
files). Each subdirectory contains a test, which at a bare minimum consist of the following files:
inputs
: the input parameters for the simulationregression.json
: the options for running the test (number of dimensions, processors etc.). See an existing file for a template.pout.0.expected
or plt000010.2d.hdf5.expected
which will be compared with the computed output files (less the .expected
suffix) to check for any deviations.$CHOMBO_HOME/lib/utils/ChomboCompare
) for comparing hdf5 files, and ensure the CHOMBO_HOME
environmental variable is set.Run all the tests using the python file run_regression_tests.py
e.g.
Check the output to the terminal, which will report which tests fail and which succeed, along with further information on test failures.
If you wish to update the expected results of a test (e.g. you have changed the code and the test now 'fails' when it shouldn't) then just replace the existing *.expected
files with new ones you have generated.
To add a new test, make a new subdirectory in this present directory with the an inputs
file, regression.json
file (see an existing example for a template) and the *.expected
files you wish to test against. The test will be run automatically by the python script (it searches this directory for all subdirectories).
Please try and ensure that you keep the test runtime to a manageable length (~10 seconds). The idea is that it is possible to run all the tests in a few minutes, to encourage users to do so regularly following changes to the code (and especially before committing code).