1 | ### 1. (un)select all atoms
|
---|
2 |
|
---|
3 | AT_SETUP([Selection - All Atoms])
|
---|
4 | AT_KEYWORDS([selection select-all-atoms])
|
---|
5 |
|
---|
6 | file=allatoms.xyz
|
---|
7 | AT_CHECK([/bin/cp -f ${abs_top_srcdir}/tests/regression/Selection/Atoms/AllAtoms/pre/box.xyz $file], 0)
|
---|
8 | AT_CHECK([chmod u+w $file], 0)
|
---|
9 | AT_CHECK([../../molecuilder -i $file -v 3 --select-all-atoms -r], 0, [stdout], [stderr])
|
---|
10 | AT_CHECK([diff -I '.*Created by molecuilder.*' $file ${abs_top_srcdir}/tests/regression/Selection/Atoms/AllAtoms/post/allatoms.xyz], 0, [ignore], [ignore])
|
---|
11 |
|
---|
12 | AT_CLEANUP
|
---|
13 |
|
---|
14 |
|
---|
15 | AT_SETUP([Selection - All Atoms with Undo])
|
---|
16 | AT_KEYWORDS([selection select-all-atoms undo])
|
---|
17 |
|
---|
18 | file=allatoms.xyz
|
---|
19 | AT_CHECK([/bin/cp -f ${abs_top_srcdir}/tests/regression/Selection/Atoms/AllAtoms/pre/box.xyz $file], 0)
|
---|
20 | AT_CHECK([chmod u+w $file], 0)
|
---|
21 | AT_CHECK([../../molecuilder -i $file -v 3 --select-all-atoms --undo -r], 0, [stdout], [stderr])
|
---|
22 | AT_CHECK([diff -I '.*Created by molecuilder.*' $file ${abs_top_srcdir}/tests/regression/Selection/Atoms/AllAtoms/post/box.xyz], 0, [ignore], [ignore])
|
---|
23 |
|
---|
24 | AT_CLEANUP
|
---|
25 |
|
---|
26 |
|
---|
27 | AT_SETUP([Selection - All Atoms with Redo])
|
---|
28 | AT_KEYWORDS([selection select-all-atoms redo])
|
---|
29 |
|
---|
30 | file=allatoms.xyz
|
---|
31 | AT_CHECK([/bin/cp -f ${abs_top_srcdir}/tests/regression/Selection/Atoms/AllAtoms/pre/box.xyz $file], 0)
|
---|
32 | AT_CHECK([chmod u+w $file], 0)
|
---|
33 | AT_CHECK([../../molecuilder -i $file -v 3 --select-all-atoms --undo --redo -r], 0, [stdout], [stderr])
|
---|
34 | AT_CHECK([diff -I '.*Created by molecuilder.*' $file ${abs_top_srcdir}/tests/regression/Selection/Atoms/AllAtoms/post/allatoms.xyz], 0, [ignore], [ignore])
|
---|
35 |
|
---|
36 | AT_CLEANUP
|
---|