Changeset 750cff for src/documentation/tests/code-tests.dox
- Timestamp:
- Oct 31, 2011, 5:13:52 PM (14 years ago)
- Branches:
- Action_Thermostats, Add_AtomRandomPerturbation, Add_FitFragmentPartialChargesAction, Add_RotateAroundBondAction, Add_SelectAtomByNameAction, Added_ParseSaveFragmentResults, AddingActions_SaveParseParticleParameters, Adding_Graph_to_ChangeBondActions, Adding_MD_integration_tests, Adding_ParticleName_to_Atom, Adding_StructOpt_integration_tests, AtomFragments, Automaking_mpqc_open, AutomationFragmentation_failures, Candidate_v1.5.4, Candidate_v1.6.0, Candidate_v1.6.1, Candidate_v1.7.0, ChangeBugEmailaddress, ChangingTestPorts, ChemicalSpaceEvaluator, CombiningParticlePotentialParsing, Combining_Subpackages, Debian_Package_split, Debian_package_split_molecuildergui_only, Disabling_MemDebug, Docu_Python_wait, EmpiricalPotential_contain_HomologyGraph, EmpiricalPotential_contain_HomologyGraph_documentation, Enable_parallel_make_install, Enhance_userguide, Enhanced_StructuralOptimization, Enhanced_StructuralOptimization_continued, Example_ManyWaysToTranslateAtom, Exclude_Hydrogens_annealWithBondGraph, FitPartialCharges_GlobalError, Fix_BoundInBox_CenterInBox_MoleculeActions, Fix_ChargeSampling_PBC, Fix_ChronosMutex, Fix_FitPartialCharges, Fix_FitPotential_needs_atomicnumbers, Fix_ForceAnnealing, Fix_IndependentFragmentGrids, Fix_ParseParticles, Fix_ParseParticles_split_forward_backward_Actions, Fix_PopActions, Fix_QtFragmentList_sorted_selection, Fix_Restrictedkeyset_FragmentMolecule, Fix_StatusMsg, Fix_StepWorldTime_single_argument, Fix_Verbose_Codepatterns, Fix_fitting_potentials, Fixes, ForceAnnealing_goodresults, ForceAnnealing_oldresults, ForceAnnealing_tocheck, ForceAnnealing_with_BondGraph, ForceAnnealing_with_BondGraph_continued, ForceAnnealing_with_BondGraph_continued_betteresults, ForceAnnealing_with_BondGraph_contraction-expansion, FragmentAction_writes_AtomFragments, FragmentMolecule_checks_bonddegrees, GeometryObjects, Gui_Fixes, Gui_displays_atomic_force_velocity, ImplicitCharges, IndependentFragmentGrids, IndependentFragmentGrids_IndividualZeroInstances, IndependentFragmentGrids_IntegrationTest, IndependentFragmentGrids_Sole_NN_Calculation, JobMarket_RobustOnKillsSegFaults, JobMarket_StableWorkerPool, JobMarket_unresolvable_hostname_fix, MoreRobust_FragmentAutomation, ODR_violation_mpqc_open, PartialCharges_OrthogonalSummation, PdbParser_setsAtomName, PythonUI_with_named_parameters, QtGui_reactivate_TimeChanged_changes, Recreated_GuiChecks, Rewrite_FitPartialCharges, RotateToPrincipalAxisSystem_UndoRedo, SaturateAtoms_findBestMatching, SaturateAtoms_singleDegree, StoppableMakroAction, Subpackage_CodePatterns, Subpackage_JobMarket, Subpackage_LinearAlgebra, Subpackage_levmar, Subpackage_mpqc_open, Subpackage_vmg, Switchable_LogView, ThirdParty_MPQC_rebuilt_buildsystem, TrajectoryDependenant_MaxOrder, TremoloParser_IncreasedPrecision, TremoloParser_MultipleTimesteps, TremoloParser_setsAtomName, Ubuntu_1604_changes, stable
- Children:
- 5982c5
- Parents:
- 19bc74
- File:
-
- 1 edited
-
src/documentation/tests/code-tests.dox (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/documentation/tests/code-tests.dox
r19bc74 r750cff 22 22 * -# Every .cpp files must include \b config.h and \b CodePatterns/MemDebug.hpp 23 23 * -# Every .hpp files must include \b config.h 24 * -# Every .dox file contains a (correctly formatted: YYYY-MM-DD) date stamp. 24 25 * 25 26 * These make sure that the memory debugger is catching every movement on the 26 * heap and that every module knows about the behavior controling defines that 27 * are checked by autoconf and written to \b config.h in the build directory. 27 * heap and that every module knows about the behavior controling \e #define's that 28 * are checked by autoconf and written to \b config.h in the build directory. And 29 * also that for every documentation file it is known when it was current. 28 30 * 29 * \section Directory structure31 * \section codetest-structure Directory structure 30 32 * 31 33 * The code tests are contained in \b tests/CodeChecks. Therein are all test … … 33 35 * Mostly, these look through files 34 36 * 35 * \section Launching all tests37 * \section codetest-launch-all Launching all tests 36 38 * 37 * TODO: Documentation - explain how to launch all code tests. 39 * In order to launch all tests, simply do: 40 * -# Enter \b tests/CodeChecks in your build directory 41 * -# Run 42 * \code make check \endcode 43 * there 38 44 * 39 * \section Launching some tests45 * \section codetest-launch-some Launching some tests 40 46 * 41 * TODO: Documentation - explain how to launch some code tests 47 * Launching a single or just some of the tests is only a little bit more 48 * complicated. Proceed as follows: 49 * -# Enter \b tests/CodeChecks in your build directory 50 * -# Run 51 * \code ../../../tests/CodeChecks/testsuite <option> AUTOTEST_PATH="<buildpath>/src" \endcode, 52 * where \a <option> is explained in the subsections below and \a <buildpath> is 53 * the build path (i.e. the variable \a AUTOTEST_PATH should contain the path to 54 * the executable). 42 55 * 43 * \section Inspecting results56 * \subsection regressiontest-launch-by-number ... by number 44 57 * 45 * TODO: Documentation - explain how to inspect code test results. 58 * Tests can be launched by specifying their test number, e.g. then \a <option> 59 * might be \a 1 or \a 1-2 or just nothing for all of them. 60 * 61 * \subsection regressiontest-launch-by-keyword .. by keyword 62 * 63 * Tests may as well be launched by some keywords, e.g. each code check has 64 * a specific keyword which is given via \b AT_KEYWORD directive of Autotest. 65 * I.e. we may launch the test on \b config.h presence via the \a <option> 66 * \a -k \a config_h. Also multiple keywords may be given. 67 * 68 * \section codetest-results Inspecting results 69 * 70 * The testsuite can be launched with the additional option of \a -d which leaves the 71 * directory of the test present even though the test has passed for inspection. 72 * 73 * If a test fails, in whatever way it was launched, will leave in the build directory 74 * a folder \b tests/CodeChecks/testsuite.dir/<nr> where \a <nr> is the number of the 75 * test (padded maybe with some zeros). 76 * 77 * In the current state tests will fail because one file does not include \b 78 * config.h or \b MemDebug.hpp. Hence, check the testsuite's log to get the file 79 * name of the culprit at its very bottom. 80 * 81 * \section unittest-add Adding new tests 82 * 83 * \attention Name convention of files, (no spaces, use underscore) e.g. 84 * \b testsuite-config_h.at 85 * - the test script file should be called as follows: 86 * -# testsuite-... 87 * -# followed by the construct that is tested. 88 * 89 * In order to add a new test, you have to do the following: 90 * -# Add a new \b testsuite-....at script to the folder \b tests/CodeChecks 91 * (have a look at the present ones and see above for help on the commands 92 * recognized by Autotest. \e Mind \e giving it a suitable \e keyword!). 93 * -# Add the file to Makefile.am such that the testsuite is re-created when 94 * you change the test script. 95 * -# Add the file as an \e m4_include directive to testsuite.at. 96 * 97 * 98 * \date 2011-10-31 46 99 * 47 100 */
Note:
See TracChangeset
for help on using the changeset viewer.
