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

Candidate_v1.7.1 stable v1.7.1
Last change on this file was 9259c3, checked in by Frederik Heber <frederik.heber@…>, 4 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.1 KB
Line 
1SOLVENTTESTS = \
2 bemtest
3
4# bemtest crashes (also in original implementation)
5XFAIL_TESTS += \
6 bemtest
7
8### NOTE(FH): This requires a source file and thus needs to run as a autotest
9### and not as a check program.
10# TESTS += $(SOLVENTTESTS)
11# check_PROGRAMS += $(SOLVENTTESTS)
12noinst_PROGRAMS += $(SOLVENTTESTS)
13
14SOLVENTLIBS = \
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# libSCsolvent.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
21bemtest_SOURCES = \
22 chemistry/solvent/bemtest.cc
23bemtest_CPPFLAGS = $(AM_CPPFLAGS) -I$(abs_top_srcdir)/src/lib -DSRCDIR=\"$(abs_top_srcdir)/src/lib/chemistry/solvent\"
24bemtest_LDADD = \
25 $(SOLVENTLIBS)
26
27
28EXTRA_DIST += ./chemistry/solvent/bemtest.in
Note: See TracBrowser for help on using the repository browser.