These files are for setting up a CTEST nightly testing server.
	0. Download openfcst using git and install it 
	1. Copy nightly_test .sh and .cmake to the openFCST root folder(where the install script resides). 
	2. Modify the nightly_test.sh script so that it changes directory to the absolute path of the openFCST root folder.
	3. Set up git user credential caching as follows:
		a.Clear you credentials: git config credential.helper clear
                b.Set the credensitals to store: git config credential.helper store
                c.Finally git pull and enter your credentials
                d.More info at  http://tinyurl.com/git-password  
	4. Add a cron job to execute nightly_tests.sh nightly. Use crontab -e.
	   The line you add should look like this: 0 02 * * *  /bin/bash /home/esdl/openfcst/nightly_tests.sh


For more info on CTEST and CDASH see the ESDL document "Installing CDASH" for more information.

Other Hints:
	1.The test set up will currently test the "development" and "master branches, to add more modify 
	  GIT_BRANCHES at line 89 of nightly_tests.cmake.
	2.The test system will depend on cmake files from Install/test/ which will only exist if OpenFCST has been build once.
	  Also if cmake files in the src/test folder change, they wone be updated in the Install/test/ folder until fcst builds
	  so if you make changes to the files in the src folder they may not necessarily be run the next time you run the tests.
