[967b3c] | 1 | ### Translation
|
---|
| 2 |
|
---|
| 3 | AT_SETUP([Molecules - Translation])
|
---|
[718542] | 4 | AT_KEYWORDS([molecules,translate-atoms])
|
---|
[23b0c2] | 5 |
|
---|
| 6 | file=test.conf
|
---|
| 7 | AT_CHECK([/bin/cp -f ${abs_top_srcdir}/${AUTOTEST_PATH}/Molecules/Translation/pre/test.conf $file], 0)
|
---|
| 8 | AT_CHECK([chmod u+w $file], 0)
|
---|
| 9 | AT_CHECK([../../molecuilder -i $file --select-molecule-by-id 0 --select-molecules-atoms -t "1., 1., 1." --periodic 0], 0, [stdout], [stderr])
|
---|
| 10 | AT_CHECK([diff $file ${abs_top_srcdir}/${AUTOTEST_PATH}/Molecules/Translation/post/test.conf], 0, [ignore], [ignore])
|
---|
| 11 |
|
---|
| 12 | file=test2.conf
|
---|
| 13 | AT_CHECK([/bin/cp -f ${abs_top_srcdir}/${AUTOTEST_PATH}/Molecules/Translation/pre/test2.conf $file], 0)
|
---|
| 14 | AT_CHECK([chmod u+w $file], 0)
|
---|
| 15 | AT_CHECK([../../molecuilder -i $file --select-molecule-by-id 0 --select-molecules-atoms -t "-1., -1., -1." --periodic 0], 0, [stdout], [stderr])
|
---|
| 16 | AT_CHECK([diff $file ${abs_top_srcdir}/${AUTOTEST_PATH}/Molecules/Translation/post/test2.conf], 0, [ignore], [ignore])
|
---|
| 17 |
|
---|
[967b3c] | 18 | AT_CLEANUP
|
---|
[e69c87] | 19 |
|
---|
| 20 |
|
---|
| 21 | AT_SETUP([Molecules - Translation with Undo])
|
---|
[718542] | 22 | AT_KEYWORDS([molecules,translate-atoms,undo])
|
---|
[e69c87] | 23 |
|
---|
| 24 | file=test.conf
|
---|
| 25 | AT_CHECK([/bin/cp -f ${abs_top_srcdir}/${AUTOTEST_PATH}/Molecules/Translation/pre/test.conf $file], 0)
|
---|
| 26 | AT_CHECK([chmod u+w $file], 0)
|
---|
| 27 | AT_CHECK([../../molecuilder -i $file --select-molecule-by-id 0 --select-molecules-atoms -t "1., 1., 1." --periodic 0 --undo], 0, [stdout], [stderr])
|
---|
| 28 | AT_CHECK([diff $file ${abs_top_srcdir}/${AUTOTEST_PATH}/Molecules/Translation/post/test-undo.conf], 0, [ignore], [ignore])
|
---|
| 29 |
|
---|
| 30 | file=test2.conf
|
---|
| 31 | AT_CHECK([/bin/cp -f ${abs_top_srcdir}/${AUTOTEST_PATH}/Molecules/Translation/pre/test2.conf $file], 0)
|
---|
| 32 | AT_CHECK([chmod u+w $file], 0)
|
---|
| 33 | AT_CHECK([../../molecuilder -i $file --select-molecule-by-id 0 --select-molecules-atoms -t "-1., -1., -1." --periodic 0 --undo], 0, [stdout], [stderr])
|
---|
| 34 | AT_CHECK([diff $file ${abs_top_srcdir}/${AUTOTEST_PATH}/Molecules/Translation/post/test2-undo.conf], 0, [ignore], [ignore])
|
---|
| 35 |
|
---|
| 36 | AT_CLEANUP
|
---|
| 37 |
|
---|
| 38 |
|
---|
| 39 | AT_SETUP([Molecules - Translation with Redo])
|
---|
[718542] | 40 | AT_KEYWORDS([molecules,translate-atoms,redo])
|
---|
[e69c87] | 41 |
|
---|
| 42 | file=test.conf
|
---|
| 43 | AT_CHECK([/bin/cp -f ${abs_top_srcdir}/${AUTOTEST_PATH}/Molecules/Translation/pre/test.conf $file], 0)
|
---|
| 44 | AT_CHECK([chmod u+w $file], 0)
|
---|
| 45 | AT_CHECK([../../molecuilder -i $file --select-molecule-by-id 0 --select-molecules-atoms -t "1., 1., 1." --periodic 0 --undo --redo], 0, [stdout], [stderr])
|
---|
| 46 | AT_CHECK([diff $file ${abs_top_srcdir}/${AUTOTEST_PATH}/Molecules/Translation/post/test.conf], 0, [ignore], [ignore])
|
---|
| 47 |
|
---|
| 48 | file=test2.conf
|
---|
| 49 | AT_CHECK([/bin/cp -f ${abs_top_srcdir}/${AUTOTEST_PATH}/Molecules/Translation/pre/test2.conf $file], 0)
|
---|
| 50 | AT_CHECK([chmod u+w $file], 0)
|
---|
| 51 | AT_CHECK([../../molecuilder -i $file --select-molecule-by-id 0 --select-molecules-atoms -t "-1., -1., -1." --periodic 0 --undo --redo], 0, [stdout], [stderr])
|
---|
| 52 | AT_CHECK([diff $file ${abs_top_srcdir}/${AUTOTEST_PATH}/Molecules/Translation/post/test2.conf], 0, [ignore], [ignore])
|
---|
| 53 |
|
---|
| 54 | AT_CLEANUP
|
---|