1 | ### Translation-Periodic
|
---|
2 |
|
---|
3 | AT_SETUP([Molecules - Translation with periodic boundaries])
|
---|
4 | AT_KEYWORDS([molecules translate-atoms])
|
---|
5 |
|
---|
6 | file=test.conf
|
---|
7 | AT_CHECK([/bin/cp -f ${abs_top_srcdir}/tests/regression/Molecules/Translation-Periodic/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 "-8., -8., -8." --periodic 1], 0, [stdout], [stderr])
|
---|
10 | AT_CHECK([diff $file ${abs_top_srcdir}/tests/regression/Molecules/Translation-Periodic/post/test.conf], 0, [ignore], [ignore])
|
---|
11 |
|
---|
12 | AT_CLEANUP
|
---|
13 |
|
---|
14 |
|
---|
15 | AT_SETUP([Molecules - Translation with periodic boundaries with Undo])
|
---|
16 | AT_KEYWORDS([molecules translate-atoms undo])
|
---|
17 |
|
---|
18 | file=test.conf
|
---|
19 | AT_CHECK([/bin/cp -f ${abs_top_srcdir}/tests/regression/Molecules/Translation-Periodic/pre/test.conf $file], 0)
|
---|
20 | AT_CHECK([chmod u+w $file], 0)
|
---|
21 | AT_CHECK([../../molecuilder -i $file --select-molecule-by-id 0 --select-molecules-atoms -t "-8., -8., -8." --periodic 1 --undo], 0, [stdout], [stderr])
|
---|
22 | AT_CHECK([diff $file ${abs_top_srcdir}/tests/regression/Molecules/Translation-Periodic/post/test-undo.conf], 0, [ignore], [ignore])
|
---|
23 |
|
---|
24 | AT_CLEANUP
|
---|
25 |
|
---|
26 |
|
---|
27 | AT_SETUP([Molecules - Translation with periodic boundaries with Redo])
|
---|
28 | AT_KEYWORDS([molecules translate-atoms redo])
|
---|
29 |
|
---|
30 | file=test.conf
|
---|
31 | AT_CHECK([/bin/cp -f ${abs_top_srcdir}/tests/regression/Molecules/Translation-Periodic/pre/test.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 "-8., -8., -8." --periodic 1 --undo --redo], 0, [stdout], [stderr])
|
---|
34 | AT_CHECK([diff $file ${abs_top_srcdir}/tests/regression/Molecules/Translation-Periodic/post/test.conf], 0, [ignore], [ignore])
|
---|
35 |
|
---|
36 | AT_CLEANUP
|
---|