source: tests/regression/Molecules/Copy/testsuite-molecules-copy-molecule.at@ fba720

Candidate_v1.6.1 ChemicalSpaceEvaluator TremoloParser_IncreasedPrecision
Last change on this file since fba720 was fba720, checked in by Frederik Heber <frederik.heber@…>, 7 years ago

Increased output precision in tremolo's data files to 10 digits.

  • this allows to safely use tremolo as writer for system states without loosing too much accuracy, i.e. w.r.t total energy, unlike others such as PDB.
  • TESTS: Marked many test as XFAIL because of changed tremolo output precision.
  • Property mode set to 100644
File size: 4.0 KB
Line 
1#
2# MoleCuilder - creates and alters molecular systems
3# Copyright (C) 2008-2012 University of Bonn
4#
5# This program is free software: you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation, either version 3 of the License, or
8# (at your option) any later version.
9#
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
16# along with this program. If not, see <http://www.gnu.org/licenses/>.
17#
18### copy molecule
19
20AT_SETUP([Molecules - Copy molecule])
21AT_KEYWORDS([molecules copy-molecule])
22AT_XFAIL_IF([/bin/true])
23
24file=test-copy.xyz
25AT_CHECK([/bin/cp -f ${abs_top_srcdir}/tests/regression/Molecules/Copy/pre/test.xyz $file], 0)
26AT_CHECK([chmod u+w $file], 0)
27AT_CHECK([../../molecuilder -i $file --select-molecule-by-id 0 --copy-molecule --position "0,0,10"], 0, [stdout], [stderr])
28AT_CHECK([diff -I '.*Created by molecuilder.*' $file ${abs_top_srcdir}/tests/regression/Molecules/Copy/post/test-copy.xyz], 0, [ignore], [ignore])
29
30file=tensid.data
31AT_CHECK([/bin/cp -f ${abs_top_srcdir}/tests/regression/Molecules/Copy/pre/tensid.data $file], 0)
32AT_CHECK([/bin/cp -f ${abs_top_srcdir}/tests/regression/Molecules/Copy/pre/tensid.potentials .], 0)
33AT_CHECK([chmod u+w $file], 0)
34AT_CHECK([../../molecuilder --parse-particle-parameters tensid.potentials -i $file --select-molecule-by-id 0 --copy-molecule --position "0,0,10"], 0, [stdout], [stderr])
35AT_CHECK([diff -I '.*Created by molecuilder.*' $file ${abs_top_srcdir}/tests/regression/Molecules/Copy/post/tensid.data], 0, [ignore], [ignore])
36
37AT_CLEANUP
38
39
40AT_SETUP([Molecules - Copy molecule with Undo])
41AT_KEYWORDS([molecules copy-molecule undo])
42
43file=test-copy.xyz
44AT_CHECK([/bin/cp -f ${abs_top_srcdir}/tests/regression/Molecules/Copy/pre/test.xyz $file], 0)
45AT_CHECK([chmod u+w $file], 0)
46AT_CHECK([../../molecuilder -i $file --select-molecule-by-id 0 --copy-molecule --position "0,0,10" --undo], 0, [stdout], [stderr])
47AT_CHECK([diff -I '.*Created by molecuilder.*' $file ${abs_top_srcdir}/tests/regression/Molecules/Copy/post/test-undo.xyz], 0, [ignore], [ignore])
48
49file=tensid.data
50AT_CHECK([/bin/cp -f ${abs_top_srcdir}/tests/regression/Molecules/Copy/pre/tensid.data $file], 0)
51AT_CHECK([/bin/cp -f ${abs_top_srcdir}/tests/regression/Molecules/Copy/pre/tensid.potentials .], 0)
52AT_CHECK([chmod u+w $file], 0)
53AT_CHECK([../../molecuilder --parse-particle-parameters tensid.potentials -i $file --select-molecule-by-id 0 --copy-molecule --position "0,0,10" --undo], 0, [stdout], [stderr])
54AT_CHECK([diff -I '.*Created by molecuilder.*' $file ${abs_top_srcdir}/tests/regression/Molecules/Copy/pre/tensid.data], 0, [ignore], [ignore])
55
56AT_CLEANUP
57
58
59AT_SETUP([Molecules - Copy molecule with Redo])
60AT_KEYWORDS([molecules copy-molecule redo])
61AT_XFAIL_IF([/bin/true])
62
63file=test-copy.xyz
64AT_CHECK([/bin/cp -f ${abs_top_srcdir}/tests/regression/Molecules/Copy/pre/test.xyz $file], 0)
65AT_CHECK([chmod u+w $file], 0)
66AT_CHECK([../../molecuilder -i $file --select-molecule-by-id 0 --copy-molecule --position "0,0,10" --undo --redo], 0, [stdout], [stderr])
67AT_CHECK([diff -I '.*Created by molecuilder.*' $file ${abs_top_srcdir}/tests/regression/Molecules/Copy/post/test-copy.xyz], 0, [ignore], [ignore])
68
69file=tensid.data
70AT_CHECK([/bin/cp -f ${abs_top_srcdir}/tests/regression/Molecules/Copy/pre/tensid.data $file], 0)
71AT_CHECK([/bin/cp -f ${abs_top_srcdir}/tests/regression/Molecules/Copy/pre/tensid.potentials .], 0)
72AT_CHECK([chmod u+w $file], 0)
73AT_CHECK([../../molecuilder --parse-particle-parameters tensid.potentials -i $file --select-molecule-by-id 0 --copy-molecule --position "0,0,10" --undo --redo], 0, [stdout], [stderr])
74AT_CHECK([diff -I '.*Created by molecuilder.*' $file ${abs_top_srcdir}/tests/regression/Molecules/Copy/post/tensid.data], 0, [ignore], [ignore])
75
76AT_CLEANUP
Note: See TracBrowser for help on using the repository browser.