Added dimension checking to ddtPhiCorr for steadyState-ddt
[foam-extend-3.0.git] / testHarness / README.txt
blob3e31e57005111d0178037e54752577ca8730309a
1 Description
2 ===========
3 This part of the repository is for OpenFOAM test harnesses.
6 Directory Structure
7 ===================
9 OpenFOAM            : CMake/CTest scripts for compilation and execution test harness for OpenFOAM.
10 OpenFOAM/1.6-ext    : Test harness for OpenFOAM version 1.6-ext. See the file OpenFOAM/1.6-ext/README.txt for more information
12 OSIG                : CMake/CTest scripts for OpenFOAM Special Interest Group (OSIG) test harness
13 OSIG/TurboMachinery : Test harness for the TurboMachinery OSIG. See the file OSIG/Turbomachinery/README.txt for more information.
16 Martin Beaudoin, Hydro-Quebec, 2010. All rights reserved.
19 1: Select your git branch of choice: ie:
21    git checkout master   # For Hrv master branch
24 2: Make sure your OpenFOAM environment is properly configured to run OpenFOAM.
27 3: The minimal cmake version number for running the test loop is 2.8.0. Make sure you are there.
30 4: Make sure you have the test harness scripts available under your git branch;
31    otherwise, you will need to fetch this from Hrv's master branch, and merge it into yours
33    ls $WM_PROJECT_DIR/testHarness  # Checking availability of testHarness under this branch
36 5: move to the runDir directory for the OpenFOAM test harness
38    cd $WM_PROJECT_DIR/testHarness/OpenFOAM/1.6-ext/runDir
41 6: Normally, if using the master branch, everything should already be setup for you to run the test harness.
42    Still, I recommand always checking that these two important files are up-to-date:
44    cp ../CMakeFiles/CMakeLists.txt $WM_PROJECT_DIR
45    cp ../CMakeFiles/CTestConfig.cmake.openfoam-extend $WM_PROJECT_DIR/CTestConfig.cmake
48 7:   Next, running the test loop is pretty simple:
50    cd $WM_PROJECT_DIR/testHarness/OpenFOAM/1.6-ext/runDir # you should already be there...
51    ./Allclean
52    ./Allrun_Experimental
55 8: The results will be published on the CDash dashboard on openfoam-extend.
57    To see your results:
58    URL      : http://openfoam-extend.sourceforge.net/CDash/index.php?project=OpenFOAM-1.6-ext
61 9: You can customize your system identifier on the dashboard using the environment variable $CDASH_SUBMIT_LOCAL_HOST_ID.
62    Otherwise, the fully qualified name of your system will be used.
64    A good customization idea would be to add the name of your git branch in your system ID.
65    I will probably modify my scripts to add this information automagically.
67    NB: Please no "forward slash" or "/" in the system ID; it looks like CDash will choke on this.
70 10: In general, see the file $WM_PROJECT_DIR/testHarness/OpenFOAM/1.6-ext/README.txt for the necessary information about running the
71     test loop.
74 11: Please do not hesitate to report any problems, comments, suggestions about the test loop.