source: ThirdParty/mpqc_open/src/lib/validate/chemistry/qc/mbpt/Makefile.am

Candidate_v1.7.1 stable v1.7.1
Last change on this file was 9259c3, checked in by Frederik Heber <frederik.heber@…>, 5 months ago

MPQC_OPEN: Fixes unit tests.

  • several unit tests programs actually need arguments. Those have been copnverted to autotest test cases.
  • half of these new test cases are expected to fail because modules cannot be properly loaded.
  • Property mode set to 100644
File size: 1.2 KB
Line 
1MBPTTESTS = \
2 mbpttest
3
4# ?mbpttest crashes with mpi (also in original implementation)
5
6### NOTE(FH): This requires a source file and thus needs to run as a autotest
7### and not as a check program.
8# TESTS += $(MBPTTESTS)
9# check_PROGRAMS += $(MBPTTESTS)
10noinst_PROGRAMS += $(MBPTTESTS)
11
12MBPTLIBS = \
13 ../../bin/mpqc/libmolecuilder_mpqc.la ../../bin/mpqc/libmolecuilder_mpqc_extract_dummy.la
14# If we link the libs directly, then the linker throws out all unneeded symbols that would
15# be loaded dynamically. Out of laziness, we therefore simply link against our dynamic
16# library which is not pruned.
17# libSCmbpt.la libSCscf.la libSCdft.la libSCwfn.la libSCsolvent.la libSCintv3.la libSCbasis.la libSCoint3.la libSCmolecule.la libSCisosurf.la libSCoptimize.la libSCsymmetry.la libSCscmat.la libSCrender.la libSCgroup.la libSCmisc.la libSCstate.la libSCkeyval.la libSCclass.la libSCcontainer.la libSCref.la
18
19mbpttest_SOURCES = \
20 chemistry/qc/mbpt/mbpttest.cc
21mbpttest_CPPFLAGS = $(AM_CPPFLAGS) -I$(abs_top_srcdir)/src/lib -DSRCDIR=\"$(abs_top_srcdir)/src/lib/chemistry/qc/mbpt\"
22mbpttest_LDFLAGS = $(AM_LDFLAGS)
23mbpttest_LDADD = \
24 $(MBPTLIBS)
25
26EXTRA_DIST += ./chemistry/qc/mbpt/mbpttest.in
27
28DISTCLEANFILES += \
29 mbpttest.wfn
Note: See TracBrowser for help on using the repository browser.