Changeset 25d9d9 for tests/regression/Domain
- Timestamp:
- Jun 12, 2016, 8:48:21 AM (9 years ago)
- Branches:
- Fix_BoundInBox_CenterInBox_MoleculeActions
- Parents:
- 996ef1
- git-author:
- Frederik Heber <heber@…> (06/11/16 16:43:54)
- git-committer:
- Frederik Heber <heber@…> (06/12/16 08:48:21)
- Location:
- tests/regression/Domain
- Files:
-
- 6 added
- 1 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
tests/regression/Domain/BoundInBox/testsuite-domain-bound-in-box-allmolecules.at
r996ef1 r25d9d9 18 18 ### bound atoms in defined domain 19 19 20 AT_SETUP([Domain - bounding in domain ])20 AT_SETUP([Domain - bounding in domain all molecules]) 21 21 AT_KEYWORDS([domain bound-in-box]) 22 22 … … 24 24 AT_CHECK([/bin/cp -f ${abs_top_srcdir}/tests/regression/Domain/BoundInBox/pre/test.conf $file], 0) 25 25 AT_CHECK([chmod u+w $file], 0) 26 AT_CHECK([../../molecuilder -i $file -- bound-in-box], 0, [stdout], [stderr])26 AT_CHECK([../../molecuilder -i $file --select-all-molecules --bound-in-box], 0, [stdout], [stderr]) 27 27 AT_CHECK([diff $file ${abs_top_srcdir}/tests/regression/Domain/BoundInBox/post/test.conf], 0, [stdout], [stderr]) 28 28 … … 30 30 31 31 32 AT_SETUP([Domain - bounding in domain with Undo])32 AT_SETUP([Domain - bounding in domain all molecules with Undo]) 33 33 AT_KEYWORDS([domain bound-in-box undo]) 34 34 … … 36 36 AT_CHECK([/bin/cp -f ${abs_top_srcdir}/tests/regression/Domain/BoundInBox/pre/test.conf $file], 0) 37 37 AT_CHECK([chmod u+w $file], 0) 38 AT_CHECK([../../molecuilder -i $file -- bound-in-box --undo], 0, [stdout], [stderr])38 AT_CHECK([../../molecuilder -i $file --select-all-molecules --bound-in-box --undo], 0, [stdout], [stderr]) 39 39 AT_CHECK([diff $file ${abs_top_srcdir}/tests/regression/Domain/BoundInBox/post/test-undo.conf], 0, [stdout], [stderr]) 40 40 … … 42 42 43 43 44 AT_SETUP([Domain - bounding in domain with Redo])44 AT_SETUP([Domain - bounding in domain all molecules with Redo]) 45 45 AT_KEYWORDS([domain bound-in-box redo]) 46 46 … … 48 48 AT_CHECK([/bin/cp -f ${abs_top_srcdir}/tests/regression/Domain/BoundInBox/pre/test.conf $file], 0) 49 49 AT_CHECK([chmod u+w $file], 0) 50 AT_CHECK([../../molecuilder -i $file -- bound-in-box --undo --redo], 0, [stdout], [stderr])50 AT_CHECK([../../molecuilder -i $file --select-all-molecules --bound-in-box --undo --redo], 0, [stdout], [stderr]) 51 51 AT_CHECK([diff $file ${abs_top_srcdir}/tests/regression/Domain/BoundInBox/post/test.conf], 0, [stdout], [stderr]) 52 52 -
tests/regression/Domain/CenterInBox/testsuite-domain-center-in-box-allmolecules.at
r996ef1 r25d9d9 18 18 ### center atoms in defined domain 19 19 20 AT_SETUP([Domain - setting and centering in domain ])20 AT_SETUP([Domain - setting and centering in domain all molecules]) 21 21 AT_KEYWORDS([domain center-in-box]) 22 22 … … 24 24 AT_CHECK([/bin/cp -f ${abs_top_srcdir}/tests/regression/Domain/CenterInBox/pre/test.conf $file], 0) 25 25 AT_CHECK([chmod u+w $file], 0) 26 AT_CHECK([../../molecuilder -i $file -b "15, 0, 15, 0, 0, 15"], 0, [stdout], [stderr])26 AT_CHECK([../../molecuilder -i $file --select-all-molecules -b "15, 0, 15, 0, 0, 15"], 0, [stdout], [stderr]) 27 27 AT_CHECK([fgrep "Box domain is now" stdout], 0, [ignore], [ignore]) 28 28 AT_CHECK([diff $file ${abs_top_srcdir}/tests/regression/Domain/CenterInBox/post/test.conf], 0, [stdout], [stderr]) … … 31 31 32 32 33 AT_SETUP([Domain - setting and centering in domain with Undo])33 AT_SETUP([Domain - setting and centering in domain all molecules with Undo]) 34 34 AT_KEYWORDS([domain center-in-box undo]) 35 35 … … 37 37 AT_CHECK([/bin/cp -f ${abs_top_srcdir}/tests/regression/Domain/CenterInBox/pre/test.conf $file], 0) 38 38 AT_CHECK([chmod u+w $file], 0) 39 AT_CHECK([../../molecuilder -i $file -b "15, 0, 15, 0, 0, 15" --undo], 0, [stdout], [stderr])39 AT_CHECK([../../molecuilder -i $file --select-all-molecules -b "15, 0, 15, 0, 0, 15" --undo], 0, [stdout], [stderr]) 40 40 AT_CHECK([fgrep "Box domain restored to" stdout], 0, [ignore], [ignore]) 41 41 AT_CHECK([diff $file ${abs_top_srcdir}/tests/regression/Domain/CenterInBox/post/test-undo.conf], 0, [stdout], [stderr]) … … 44 44 45 45 46 AT_SETUP([Domain - setting and centering in domain with Redo])46 AT_SETUP([Domain - setting and centering in domain all molecules with Redo]) 47 47 AT_KEYWORDS([domain center-in-box redo]) 48 48 … … 50 50 AT_CHECK([/bin/cp -f ${abs_top_srcdir}/tests/regression/Domain/CenterInBox/pre/test.conf $file], 0) 51 51 AT_CHECK([chmod u+w $file], 0) 52 AT_CHECK([../../molecuilder -i $file -b "15, 0, 15, 0, 0, 15" --undo --redo], 0, [stdout], [stderr])52 AT_CHECK([../../molecuilder -i $file --select-all-molecules -b "15, 0, 15, 0, 0, 15" --undo --redo], 0, [stdout], [stderr]) 53 53 AT_CHECK([fgrep "Box domain is again" stdout], 0, [ignore], [ignore]) 54 54 AT_CHECK([diff $file ${abs_top_srcdir}/tests/regression/Domain/CenterInBox/post/test.conf], 0, [stdout], [stderr]) -
tests/regression/Domain/testsuite-domain.at
r996ef1 r25d9d9 22 22 23 23 # bound atoms in defined domain 24 m4_include([Domain/BoundInBox/testsuite-domain-bound-in-box.at]) 24 m4_include([Domain/BoundInBox/testsuite-domain-bound-in-box-allmolecules.at]) 25 m4_include([Domain/BoundInBox/testsuite-domain-bound-in-box-somemolecules.at]) 25 26 26 27 # center atoms in defined domain 27 m4_include([Domain/CenterInBox/testsuite-domain-center-in-box.at]) 28 m4_include([Domain/CenterInBox/testsuite-domain-center-in-box-allmolecules.at]) 29 m4_include([Domain/CenterInBox/testsuite-domain-center-in-box-somemolecules.at]) 28 30 29 31 # center atoms with defined boundary
Note:
See TracChangeset
for help on using the changeset viewer.