Configuration should be separated from the scripts
Brought to you by:
ianhinder
There are certain site-specific configuration options which are currently hard-coded into the script. These could be moved into a ~/.cactusbat file of the form
THORNLISTS="https://svn.einsteintoolkit.org/manifest/trunk/einsteintoolkit.th"
TESTDIR=...
WEBDIR=...
etc. This could be sourced by the script which starts the tests:
source ~/.cactusbat
and the variables used to run the tests. This separates the code from the configuration, and allows everyone to run the same version of the code.