Changeset cd91bd for tests/regression/Options
- Timestamp:
- Apr 11, 2018, 6:30:10 AM (7 years ago)
- Branches:
- Candidate_v1.6.1, ChemicalSpaceEvaluator, PythonUI_with_named_parameters, TremoloParser_IncreasedPrecision
- Children:
- fba720
- Parents:
- e7ad08
- git-author:
- Frederik Heber <frederik.heber@…> (09/06/17 14:04:23)
- git-committer:
- Frederik Heber <frederik.heber@…> (04/11/18 06:30:10)
- Location:
- tests/regression/Options
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/regression/Options/DryRun/post/session.py
re7ad08 rcd91bd 2 2 # ========================== Stored Session BEGIN ========================== 3 3 pyMoleCuilder.CommandDryRun() 4 pyMoleCuilder.WorldInput( "hydrogen.xyz")5 pyMoleCuilder.AtomAdd( "1","0,0,0")4 pyMoleCuilder.WorldInput(input="hydrogen.xyz") 5 pyMoleCuilder.AtomAdd(add_atom="1", domain_position="0,0,0") 6 6 pyMoleCuilder.SelectionAllAtoms() 7 pyMoleCuilder.AtomTranslate( "5,5,5","0")7 pyMoleCuilder.AtomTranslate(position="5,5,5", periodic="0") 8 8 pyMoleCuilder.CommandNoDryRun() 9 9 # =========================== Stored Session END =========================== -
tests/regression/Options/DryRun/testsuite-options-dryrun-storesession.at
re7ad08 rcd91bd 21 21 AT_KEYWORDS([options dry-run no-dry-run store-session]) 22 22 AT_SKIP_IF([../../molecuilder --help store-session; if test $? -eq 5; then /bin/true; else /bin/false; fi]) 23 AT_XFAIL_IF([/bin/true])24 23 25 24 # sample session -
tests/regression/Options/Session/post/complextest.py
re7ad08 rcd91bd 1 1 import pyMoleCuilder 2 2 # ========================== Stored Session BEGIN ========================== 3 pyMoleCuilder.CommandVerbose( "2")4 pyMoleCuilder.ParserSetOutputFormats( "mpqc tremolo")5 pyMoleCuilder.CommandSetRandomNumbersDistribution( "uniform_int","p=1;")6 pyMoleCuilder.WorldChangeBox( "20,0,0,20,0,20")7 pyMoleCuilder.AtomAdd( "1","1,1,1")8 pyMoleCuilder.SelectionAtomById( "0 0")3 pyMoleCuilder.CommandVerbose(verbose="2") 4 pyMoleCuilder.ParserSetOutputFormats(set_output="mpqc tremolo") 5 pyMoleCuilder.CommandSetRandomNumbersDistribution(set_random_number_distribution="uniform_int", random_number_distribution_parameters="p=1;") 6 pyMoleCuilder.WorldChangeBox(change_box="20,0,0,20,0,20") 7 pyMoleCuilder.AtomAdd(add_atom="1", domain_position="1,1,1") 8 pyMoleCuilder.SelectionAtomById(select_atom_by_id="0 0") 9 9 pyMoleCuilder.GraphSubgraphDissection() 10 10 pyMoleCuilder.SelectionMoleculeOfAtom() 11 pyMoleCuilder.FillRegularGrid( "3 3 3", ".5,.5,.5", "1", "0", "0", "0","0")11 pyMoleCuilder.FillRegularGrid(mesh_size="3 3 3", mesh_offset=".5,.5,.5", min_distance="1", tesselation_radius="0", random_atom_displacement="0", random_molecule_displacement="0", DoRotate="0") 12 12 pyMoleCuilder.CommandVersion() 13 13 # =========================== Stored Session END =========================== -
tests/regression/Options/Session/post/test.py
re7ad08 rcd91bd 1 1 import pyMoleCuilder 2 2 # ========================== Stored Session BEGIN ========================== 3 pyMoleCuilder.CommandVerbose( "2")3 pyMoleCuilder.CommandVerbose(verbose="2") 4 4 pyMoleCuilder.CommandVersion() 5 5 # =========================== Stored Session END =========================== -
tests/regression/Options/Session/testsuite-options-load-session-python.at
re7ad08 rcd91bd 22 22 AT_TESTED([python diff grep]) 23 23 AT_SKIP_IF([../../molecuilder --help load-session; if test $? -eq 5; then /bin/true; else /bin/false; fi]) 24 AT_XFAIL_IF([/bin/true])25 24 26 25 # check that session is stored and can be executed when correctly prefixed … … 36 35 AT_TESTED([python diff grep]) 37 36 AT_SKIP_IF([../../molecuilder --help load-session; if test $? -eq 5; then /bin/true; else /bin/false; fi]) 38 AT_XFAIL_IF([/bin/true])39 37 40 38 # check that session is stored and can be executed when correctly prefixed -
tests/regression/Options/Session/testsuite-options-store-session-python.at
re7ad08 rcd91bd 22 22 AT_TESTED([python diff grep]) 23 23 AT_SKIP_IF([../../molecuilder --help load-session; if test $? -eq 5; then /bin/true; else /bin/false; fi]) 24 AT_XFAIL_IF([/bin/true])25 24 26 25 # check that session is stored and can be executed when correctly prefixed … … 36 35 AT_TESTED([python diff grep]) 37 36 AT_SKIP_IF([../../molecuilder --help load-session; if test $? -eq 5; then /bin/true; else /bin/false; fi]) 38 AT_XFAIL_IF([/bin/true])39 37 40 38 # check that session is stored and can be executed when correctly prefixed
Note:
See TracChangeset
for help on using the changeset viewer.