source: tests/regression/Fragmentation/FragmentationAutomation/testsuite-fragmentation-fragmentation-automation.at@ 90426a

Last change on this file since 90426a was 6ef48c, checked in by Frederik Heber <heber@…>, 11 years ago

SphericalPointDistribution now has full functionality.

  • we look for a best matching between present points and desired ideal configuration, we rotate for alignment and fill all remaining vacant points with hydrogens.
  • TESTS: temporarily skipping all Fragmentation regression tests, FragmentationAutomation regression tests marked as XFAIL.
  • Property mode set to 100644
File size: 2.2 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### calculate fragment energies with mpqc
19
20AT_SETUP([Fragmentation Automation - Fragmentation fails correctly])
21AT_KEYWORDS([fragmentation automation fragment-molecule fragmentation-automation])
22AT_XFAIL_IF([/bin/true])
23
24file=test.conf
25AT_CHECK([/bin/cp -f ${abs_top_srcdir}/tests/regression/Fragmentation/FragmentMolecule/pre/test.conf $file], 0)
26AT_CHECK([chmod u+w $file], 0, [ignore], [ignore])
27AT_CHECK([../../molecuilder \
28 -i $file \
29 --subgraph-dissection \
30 --verbose 1 \
31 --select-molecule-by-id 0 \
32 --select-molecules-atoms \
33 --fragment-molecule BondFragment \
34 --distance 1.55 \
35 --order 2 \
36 --fragment-automation \
37 --fragment-executable /bin/false],
38 5, [stdout], [stderr])
39
40AT_CLEANUP
41
42AT_SETUP([Fragmentation Automation - Fragmentation fails, more Actions still in queue])
43AT_KEYWORDS([fragmentation automation fragment-molecule fragmentation-automation])
44AT_XFAIL_IF([/bin/true])
45
46file=test.conf
47AT_CHECK([/bin/cp -f ${abs_top_srcdir}/tests/regression/Fragmentation/FragmentMolecule/pre/test.conf $file], 0)
48AT_CHECK([chmod u+w $file], 0, [ignore], [ignore])
49AT_CHECK([../../molecuilder \
50 -i $file \
51 --subgraph-dissection \
52 --verbose 1 \
53 --select-molecule-by-id 0 \
54 --select-molecules-atoms \
55 --fragment-molecule BondFragment \
56 --distance 1.55 \
57 --order 2 \
58 --fragment-automation \
59 --fragment-executable /bin/false \
60 --analyse-fragment-results \
61 --fragment-prefix $FILENAME \
62 --fragment-resultfile ${FILENAME}_results.dat],
63 5, [stdout], [stderr])
64
65AT_CLEANUP
Note: See TracBrowser for help on using the repository browser.