source: ThirdParty/mpqc_open/src/lib/validate/chemistry/qc/psi/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 
1PSITESTS = \
2 psitest
3
4# psitest crashes due to missing psi installation (also in original implementation)
5XFAIL_TESTS += \
6 psitest
7
8# TESTS += $(PSITESTS)
9# check_PROGRAMS += $(PSITESTS)
10### NOTE(FH): This requires a source file and thus needs to run as a autotest
11### and not as a check program.
12noinst_PROGRAMS += $(PSITESTS)
13
14PSILIBS = \
15 ../../bin/mpqc/libmolecuilder_mpqc.la ../../bin/mpqc/libmolecuilder_mpqc_extract_dummy.la
16# If we link the libs directly, then the linker throws out all unneeded symbols that would
17# be loaded dynamically. Out of laziness, we therefore simply link against our dynamic
18# library which is not pruned.
19# libSCpsi.la libSCdft.la libSCscf.la libSCwfn.la libSCsolvent.la libSCintv3.la libSCbasis.la libSCoint3.la libSCmolecule.la libSCisosurf.la libSCoptimize.la libSCsymmetry.la libSCscmat.la libSCgroup.la libSCrender.la libSCmisc.la libSCstate.la libSCkeyval.la libSCclass.la libSCcontainer.la libSCref.la
20
21psitest_SOURCES = \
22 chemistry/qc/psi/psitest.cc
23psitest_CPPFLAGS = $(AM_CPPFLAGS) -I$(abs_top_srcdir)/src/lib -DSRCDIR=\"$(abs_top_srcdir)/src/lib/chemistry/qc/psi\"
24psitest_LDADD = \
25 $(PSILIBS)
26
27
28EXTRA_DIST += ./chemistry/qc/psi/psi.in
29
30DISTCLEANFILES += \
31 input.dat \
32 psi.stdout \
33 psi.stderr
Note: See TracBrowser for help on using the repository browser.