Ignore:
Timestamp:
Sep 22, 2011, 12:47:19 PM (13 years ago)
Author:
Frederik Heber <heber@…>
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:
f2872a
Parents:
7c958e
git-author:
Frederik Heber <heber@…> (04/27/11 17:12:12)
git-committer:
Frederik Heber <heber@…> (09/22/11 12:47:19)
Message:

Split off Unselections from selections in Selection/Molecules.

  • each testsuite*.at file now just has a single test (including undo/redo).
  • renamed testsuite*.at files: added missing "select-" such that full action name is contained in filename.
Location:
tests/regression/Selection/Molecules/MoleculeByFormula
Files:
1 added
1 moved

Legend:

Unmodified
Added
Removed
  • tests/regression/Selection/Molecules/MoleculeByFormula/testsuite-selection-unselect-molecules-by-formula.at

    r7c958e rd70fff  
    11### 3. (un)select molecules by formula
    2 
    3 
    4 AT_SETUP([Selection - Molecule by formula])
    5 AT_KEYWORDS([selection,molecule])
    6 
    7 regressionpath="${abs_top_srcdir}/${AUTOTEST_PATH}/Selection/Molecules/MoleculeByFormula"
    8 srcfile=mix.xyz
    9 testfile=test.xyz
    10 targetfile=water.xyz
    11 AT_CHECK([cp -n ${regressionpath}/pre/$srcfile $testfile], 0)
    12 AT_CHECK([../../molecuilder -i $testfile -I --select-molecules-by-formula H2O -s $targetfile], 0, [stdout], [stderr])
    13 AT_CHECK([diff -I '.*Created by molecuilder.*' $targetfile ${regressionpath}/post/$targetfile], 0, [ignore], [ignore])
    14 
    15 regressionpath="${abs_top_srcdir}/${AUTOTEST_PATH}/Selection/Molecules/MoleculeByFormula"
    16 srcfile=mix.xyz
    17 testfile=test.xyz
    18 targetfile=ethanol.xyz
    19 AT_CHECK([cp -n ${regressionpath}/pre/$srcfile $testfile], 0)
    20 AT_CHECK([../../molecuilder -i $testfile -I --select-molecules-by-formula "C2H5(OH)" -s $targetfile], 0, [stdout], [stderr])
    21 AT_CHECK([diff -I '.*Created by molecuilder.*' $targetfile ${regressionpath}/post/$targetfile], 0, [ignore], [ignore])
    22 
    23 regressionpath="${abs_top_srcdir}/${AUTOTEST_PATH}/Selection/Molecules/MoleculeByFormula"
    24 srcfile=mix.xyz
    25 testfile=test.xyz
    26 targetfile=benzene.xyz
    27 AT_CHECK([cp -n ${regressionpath}/pre/$srcfile $testfile], 0)
    28 AT_CHECK([../../molecuilder -i $testfile -I --select-molecules-by-formula C6H6 -s $targetfile], 0, [stdout], [stderr])
    29 AT_CHECK([diff -I '.*Created by molecuilder.*' $targetfile ${regressionpath}/post/$targetfile], 0, [ignore], [ignore])
    30 
    31 AT_CLEANUP
    32 
    33 
    34 AT_SETUP([Selection - Molecule by formula with Undo])
    35 AT_KEYWORDS([selection,molecule])
    36 
    37 regressionpath="${abs_top_srcdir}/${AUTOTEST_PATH}/Selection/Molecules/MoleculeByFormula"
    38 srcfile=mix.xyz
    39 testfile=test.xyz
    40 targetfile=empty.xyz
    41 AT_CHECK([cp -n ${regressionpath}/pre/$srcfile $testfile], 0)
    42 AT_CHECK([../../molecuilder -i $testfile -I --select-molecules-by-formula H2O --undo -s $targetfile], 0, [stdout], [stderr])
    43 AT_CHECK([diff -I '.*Created by molecuilder.*' $targetfile ${regressionpath}/post/$targetfile], 0, [ignore], [ignore])
    44 
    45 regressionpath="${abs_top_srcdir}/${AUTOTEST_PATH}/Selection/Molecules/MoleculeByFormula"
    46 srcfile=mix.xyz
    47 testfile=test.xyz
    48 targetfile=empty.xyz
    49 AT_CHECK([cp -n ${regressionpath}/pre/$srcfile $testfile], 0)
    50 AT_CHECK([../../molecuilder -i $testfile -I --select-molecules-by-formula "C2H5(OH)" --undo -s $targetfile], 0, [stdout], [stderr])
    51 AT_CHECK([diff -I '.*Created by molecuilder.*' $targetfile ${regressionpath}/post/$targetfile], 0, [ignore], [ignore])
    52 
    53 regressionpath="${abs_top_srcdir}/${AUTOTEST_PATH}/Selection/Molecules/MoleculeByFormula"
    54 srcfile=mix.xyz
    55 testfile=test.xyz
    56 targetfile=empty.xyz
    57 AT_CHECK([cp -n ${regressionpath}/pre/$srcfile $testfile], 0)
    58 AT_CHECK([../../molecuilder -i $testfile -I --select-molecules-by-formula C6H6 --undo -s $targetfile], 0, [stdout], [stderr])
    59 AT_CHECK([diff -I '.*Created by molecuilder.*' $targetfile ${regressionpath}/post/$targetfile], 0, [ignore], [ignore])
    60 
    61 AT_CLEANUP
    62 
    63 
    64 AT_SETUP([Selection - Molecule by formula with Redo])
    65 AT_KEYWORDS([selection,molecule])
    66 
    67 regressionpath="${abs_top_srcdir}/${AUTOTEST_PATH}/Selection/Molecules/MoleculeByFormula"
    68 srcfile=mix.xyz
    69 testfile=test.xyz
    70 targetfile=water.xyz
    71 AT_CHECK([cp -n ${regressionpath}/pre/$srcfile $testfile], 0)
    72 AT_CHECK([../../molecuilder -i $testfile -I --select-molecules-by-formula H2O --undo --redo -s $targetfile], 0, [stdout], [stderr])
    73 AT_CHECK([diff -I '.*Created by molecuilder.*' $targetfile ${regressionpath}/post/$targetfile], 0, [ignore], [ignore])
    74 
    75 regressionpath="${abs_top_srcdir}/${AUTOTEST_PATH}/Selection/Molecules/MoleculeByFormula"
    76 srcfile=mix.xyz
    77 testfile=test.xyz
    78 targetfile=ethanol.xyz
    79 AT_CHECK([cp -n ${regressionpath}/pre/$srcfile $testfile], 0)
    80 AT_CHECK([../../molecuilder -i $testfile -I --select-molecules-by-formula "C2H5(OH)" --undo --redo -s $targetfile], 0, [stdout], [stderr])
    81 AT_CHECK([diff -I '.*Created by molecuilder.*' $targetfile ${regressionpath}/post/$targetfile], 0, [ignore], [ignore])
    82 
    83 regressionpath="${abs_top_srcdir}/${AUTOTEST_PATH}/Selection/Molecules/MoleculeByFormula"
    84 srcfile=mix.xyz
    85 testfile=test.xyz
    86 targetfile=benzene.xyz
    87 AT_CHECK([cp -n ${regressionpath}/pre/$srcfile $testfile], 0)
    88 AT_CHECK([../../molecuilder -i $testfile -I --select-molecules-by-formula C6H6 --undo --redo -s $targetfile], 0, [stdout], [stderr])
    89 AT_CHECK([diff -I '.*Created by molecuilder.*' $targetfile ${regressionpath}/post/$targetfile], 0, [ignore], [ignore])
    90 
    91 AT_CLEANUP
    922
    933
Note: See TracChangeset for help on using the changeset viewer.