1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
check_PROGRAMS = testMath testMatVec testBoost testCmp testApi testNaN
testBoost_SOURCES = testBoost.cc
testBoost_CPPFLAGS = -I$(top_srcdir)/include $(AM_CPPFLAGS)
testMath_SOURCES = testMath.cc
testMath_CPPFLAGS = -I$(top_srcdir)/include $(AM_CPPFLAGS)
testMatVec_SOURCES = testMatVec.cc
testMatVec_LDADD = -lm $(GSL_LDFLAGS)
testMatVec_CPPFLAGS = -I$(top_srcdir)/include $(AM_CPPFLAGS)
testCmp_SOURCES = testCmp.cc
testCmp_CPPFLAGS = -I$(top_srcdir)/include $(AM_CPPFLAGS)
testApi_SOURCES = testApi.cc
testApi_CPPFLAGS = -I$(top_srcdir)/include $(AM_CPPFLAGS)
testApi_LDADD = ../src/libRivet.la $(HEPMCLDFLAGS) $(HEPMCLDLIBS)
testNaN_SOURCES = testNaN.cc
testNaN_CPPFLAGS = -I$(top_srcdir)/include $(AM_CPPFLAGS)
testNaN_LDADD = ../src/libRivet.la $(HEPMCLDFLAGS) $(HEPMCLDLIBS)
TESTS_ENVIRONMENT = \
RIVET_REF_PATH=$(top_builddir)/data/refdata \
RIVET_INFO_PATH=$(top_builddir)/data/anainfo \
RIVET_ANALYSIS_PATH=$(top_builddir)/src/Analyses/.libs \
LD_LIBRARY_PATH=$(top_builddir)/src:$(top_builddir)/src/.libs:$(top_builddir)/src/Tools/yaml-cpp:$(top_builddir)/src/Tools/yaml-cpp/.libs:$(HEPMCLIBPATH):$(FASTJETLIBPATH):$$LD_LIBRARY_PATH \
PYTHON_BUILD_DIR=$(top_builddir)/pyext/build \
PATH=$(top_builddir)/bin:$(PATH)
TESTS = testMath testMatVec testBoost testCmp testApi testNaN testCmdLine.sh
XFAIL_TESTS = testNaN
EXTRA_DIST = testApi.hepmc testCmdLine.sh
clean-local:
@rm -f out.aida log a.out fifo.hepmc file2.hepmc
|