Changeset e69c87 for tests/regression/Options
- Timestamp:
- Sep 21, 2011, 8:04:30 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, 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:
- 520f93
- Parents:
- caeeb8
- git-author:
- Frederik Heber <heber@…> (04/27/11 12:06:33)
- git-committer:
- Frederik Heber <heber@…> (09/21/11 20:04:30)
- Location:
- tests/regression/Options
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/regression/Options/BondLengthTable/testsuite-options-bond-length-table.at
rcaeeb8 re69c87 3 3 AT_SETUP([Standard Options - bond length table]) 4 4 AT_KEYWORDS([options]) 5 5 6 AT_DATA([bondlength.db], [[# bond length database 6 7 1 2 … … 10 11 AT_CHECK([../../molecuilder -i test.conf -g bondlength.db], 0, [stdout], [stderr]) 11 12 AT_CHECK([grep -E "Using.*as bond length table." stdout], 0, [ignore], [ignore]) 13 12 14 AT_CLEANUP 15 16 17 AT_SETUP([Standard Options - bond length table with Undo]) 18 AT_XFAIL_IF([/bin/true]) 19 AT_KEYWORDS([options]) 20 21 AT_DATA([bondlength.db], [[# bond length database 22 1 2 23 1 1. 0. 24 2 0. 0. 25 ]]) 26 AT_CHECK([../../molecuilder -i test.conf -g bondlength.db --undo], 0, [stdout], [stderr]) 27 AT_CHECK([grep -E "Using.*as bond length table." stdout], 0, [ignore], [ignore]) 28 29 AT_CLEANUP 30 31 32 AT_SETUP([Standard Options - bond length table with Redo]) 33 AT_XFAIL_IF([/bin/true]) 34 AT_KEYWORDS([options]) 35 36 AT_DATA([bondlength.db], [[# bond length database 37 1 2 38 1 1. 0. 39 2 0. 0. 40 ]]) 41 AT_CHECK([../../molecuilder -i test.conf -g bondlength.db --undo --redo], 0, [stdout], [stderr]) 42 AT_CHECK([grep -E "Using.*as bond length table." stdout], 0, [ignore], [ignore]) 43 44 AT_CLEANUP -
tests/regression/Options/ElementsDb/testsuite-options-elements-db.at
rcaeeb8 re69c87 3 3 AT_SETUP([Standard Options - element database]) 4 4 AT_KEYWORDS([options]) 5 5 6 AT_DATA([elements.db], [[# Covalent radius of each element in Angstroem from CSD (binding is: [Rcov(A)+Rcov(B)-t,Rcov(A)+Rcov(B)+t] with t = 0.4A 6 7 #Element Name Symbol Period Group Block Atomic Number AtomicWeight Covalent Radius vdW Radius … … 12 13 AT_CHECK([fgrep "Element list loaded successfully." stdout], 0, [ignore], [ignore]) 13 14 AT_CHECK([fgrep "Something went wrong while parsing the other databases!" stderr], 0, [ignore], [ignore]) 15 14 16 AT_CLEANUP 17 18 19 AT_SETUP([Standard Options - element database with Undo]) 20 AT_XFAIL_IF([/bin/true]) 21 AT_KEYWORDS([options]) 22 23 AT_DATA([elements.db], [[# Covalent radius of each element in Angstroem from CSD (binding is: [Rcov(A)+Rcov(B)-t,Rcov(A)+Rcov(B)+t] with t = 0.4A 24 #Element Name Symbol Period Group Block Atomic Number AtomicWeight Covalent Radius vdW Radius 25 Hydrogen H 1 1 s 1 1.008 0.23 1.09 26 Helium He 1 18 p 2 4.003 1.5 1.4 27 ]]) 28 AT_CHECK([../../molecuilder -i test.conf -e ./ --undo], 0, [stdout], [stderr]) 29 AT_CHECK([grep -E "Using.*as elements database." stdout], 0, [ignore], [ignore]) 30 AT_CHECK([fgrep "Element list loaded successfully." stdout], 0, [ignore], [ignore]) 31 AT_CHECK([fgrep "Something went wrong while parsing the other databases!" stderr], 0, [ignore], [ignore]) 32 33 AT_CLEANUP 34 35 36 AT_SETUP([Standard Options - element database with Redo]) 37 AT_XFAIL_IF([/bin/true]) 38 AT_KEYWORDS([options]) 39 40 AT_DATA([elements.db], [[# Covalent radius of each element in Angstroem from CSD (binding is: [Rcov(A)+Rcov(B)-t,Rcov(A)+Rcov(B)+t] with t = 0.4A 41 #Element Name Symbol Period Group Block Atomic Number AtomicWeight Covalent Radius vdW Radius 42 Hydrogen H 1 1 s 1 1.008 0.23 1.09 43 Helium He 1 18 p 2 4.003 1.5 1.4 44 ]]) 45 AT_CHECK([../../molecuilder -i test.conf -e ./ --undo --redo], 0, [stdout], [stderr]) 46 AT_CHECK([grep -E "Using.*as elements database." stdout], 0, [ignore], [ignore]) 47 AT_CHECK([fgrep "Element list loaded successfully." stdout], 0, [ignore], [ignore]) 48 AT_CHECK([fgrep "Something went wrong while parsing the other databases!" stderr], 0, [ignore], [ignore]) 49 50 AT_CLEANUP -
tests/regression/Options/FastParsing/testsuite-options-fast-parsing.at
rcaeeb8 re69c87 3 3 AT_SETUP([Standard Options - fast trajectories]) 4 4 AT_KEYWORDS([options]) 5 5 6 AT_CHECK([../../molecuilder -i test.conf -n 1], 0, [stdout], [stderr]) 6 7 AT_CHECK([fgrep "I won't parse trajectories" stdout], 0, [ignore], [ignore]) 8 7 9 AT_CLEANUP 8 10 9 AT_SETUP([Standard Options - fast trajectories with Undo /Redo])11 AT_SETUP([Standard Options - fast trajectories with Undo]) 10 12 AT_KEYWORDS([options]) 13 11 14 AT_CHECK([../../molecuilder -i test.conf -n 1 --undo], 0, [stdout], [stderr]) 12 15 AT_CHECK([fgrep "I will parse trajectories." stdout], 0, [ignore], [ignore]) 16 17 AT_CLEANUP 18 19 20 AT_SETUP([Standard Options - fast trajectories with Redo]) 21 AT_KEYWORDS([options]) 22 13 23 AT_CHECK([../../molecuilder -i test.conf -n 1 --undo --redo], 0, [stdout], [stderr]) 14 24 AT_CHECK([grep -c "I won't parse trajectories" stdout], 0, 2 15 25 , [ignore]) 26 16 27 AT_CLEANUP -
tests/regression/Options/Help/testsuite-options-help.at
rcaeeb8 re69c87 3 3 AT_SETUP([Standard Options - help]) 4 4 AT_KEYWORDS([options]) 5 5 6 AT_CHECK([../../molecuilder -h], 0, [stdout], [ignore]) 6 7 AT_CHECK([fgrep "list of all available Actions" stdout], 0, [ignore], [ignore]) … … 11 12 AT_CHECK([../../molecuilder --help --actionname "help"], 0, [stdout], [ignore]) 12 13 AT_CHECK([fgrep "Options available for action 'help'" stdout], 0, [ignore], [ignore]) 14 13 15 AT_CLEANUP -
tests/regression/Options/SetDefaultName/testsuite-options-set-default-name.at
rcaeeb8 re69c87 3 3 AT_SETUP([Standard Options - molecule default name]) 4 4 AT_KEYWORDS([options]) 5 5 6 AT_CHECK([../../molecuilder -i test.conf -X test], 0, [stdout], [stderr]) 6 7 AT_CHECK([fgrep "Default name of new molecules set to test." stdout], 0, [ignore], [ignore]) 8 7 9 AT_CLEANUP 8 10 9 AT_SETUP([Standard Options - molecule default name with Undo /Redo])11 AT_SETUP([Standard Options - molecule default name with Undo]) 10 12 AT_KEYWORDS([options]) 11 13 AT_CHECK([../../molecuilder -i test.conf -X test --undo], 0, [stdout], [stderr]) 12 14 AT_CHECK([fgrep "Default name of new molecules set to none." stdout], 0, [ignore], [ignore]) 15 16 AT_CLEANUP 17 18 19 AT_SETUP([Standard Options - molecule default name with Redo]) 20 AT_KEYWORDS([options]) 21 13 22 AT_CHECK([../../molecuilder -i test.conf -X test --undo --redo], 0, [stdout], [stderr]) 14 23 AT_CHECK([fgrep "Default name of new molecules set to test." stdout], 0, [ignore], [ignore]) 24 15 25 AT_CLEANUP -
tests/regression/Options/SetWorldTime/testsuite-options-set-world-time.at
rcaeeb8 re69c87 1 1 ### molecule default name 2 2 3 AT_SETUP([Standard Options - set world time with Undo/Redo])3 AT_SETUP([Standard Options - set world time]) 4 4 AT_KEYWORDS([options]) 5 5 6 AT_CHECK([../../molecuilder --set-world-time 10], 0, [stdout], [stderr]) 6 7 AT_CHECK([fgrep "Current time step is now: 10" stdout], 0, [ignore], [ignore]) 8 9 AT_CLEANUP 10 11 12 AT_SETUP([Standard Options - set world time with Undo]) 13 AT_KEYWORDS([options]) 14 7 15 AT_CHECK([../../molecuilder --set-world-time 10 --undo], 0, [stdout], [stderr]) 8 16 AT_CHECK([fgrep "Current time step is now again: 0" stdout], 0, [ignore], [ignore]) 17 18 AT_CLEANUP 19 20 21 AT_SETUP([Standard Options - set world time with Redo]) 22 AT_KEYWORDS([options]) 23 9 24 AT_CHECK([../../molecuilder --set-world-time 10 --undo --redo], 0, [stdout], [stderr]) 10 25 AT_CHECK([fgrep "Current time step is now: 10" stdout], 0, [ignore], [ignore]) 26 11 27 AT_CLEANUP -
tests/regression/Options/Verbosity/testsuite-options-verbosity.at
rcaeeb8 re69c87 1 1 ### verbosity 2 2 3 AT_SETUP([Standard Options - verbosity with Undo/Redo])3 AT_SETUP([Standard Options - verbosity]) 4 4 AT_KEYWORDS([options]) 5 AT_CHECK([pwd],[ignore],[ignore]) 5 6 6 AT_CHECK([../../molecuilder -v 9], 0, [stdout], [ignore]) 7 7 AT_CHECK([grep "Setting verbosity from .* to 9" stdout], 0, [ignore], [ignore]) 8 9 AT_CLEANUP 10 11 12 AT_SETUP([Standard Options - verbosity with Undo]) 13 AT_KEYWORDS([options]) 14 8 15 AT_CHECK([../../molecuilder -v 9 --undo], 0, [stdout], [ignore]) 9 16 AT_CHECK([grep "Setting verbosity from 9 to .*" stdout], 0, [ignore], [ignore]) 17 18 AT_CLEANUP 19 20 21 AT_SETUP([Standard Options - verbosity with Redo]) 22 AT_KEYWORDS([options]) 23 10 24 AT_CHECK([../../molecuilder -v 9 --undo --redo], 0, [stdout], [ignore]) 11 25 AT_CHECK([grep "Setting verbosity from .* to 9" stdout], 0, [ignore], [ignore]) 26 12 27 AT_CLEANUP
Note:
See TracChangeset
for help on using the changeset viewer.