summaryrefslogtreecommitdiff
path: root/test/system/Makefile.am
blob: 7fa7b4a68a091b71c2dd4df16f1712826d540c9c (plain)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
TESTS_ENVIRONMENT =
TEST_EXTENSIONS = .class
CPLUSPLUS_TESTS = \
	boilerplate \
	ouroborous
#	cvc3_main

TESTS = $(CPLUSPLUS_TESTS)

if CVC4_LANGUAGE_BINDING_JAVA
TESTS += CVC4JavaTest.class
endif

CLASS_LOG_COMPILER = @srcdir@/run_java_test $(JAVA) -classpath .:@abs_top_builddir@/src/bindings/cvc4.jar -Djava.library.path=$(abs_top_builddir)/src/bindings/.libs:$(abs_top_builddir)/src/.libs

# Things that aren't tests but that tests rely on and need to
# go into the distribution
TEST_DEPS_DIST = \
	cvc3_main.cpp \
	cvc3_george.h \
	cvc3_george.cpp \
	CVC4JavaTest.java \
	run_java_test

# Make-level dependencies; these don't go in the source distribution
# but should trigger a re-compile of all unit tests.  Libraries are
# included here because (1) if static-linking, the tests must be
# relinked, and (2) if they've changed that means the sources changed,
# and that means we should ensure the tests compile against any
# changes made in the header files.
TEST_DEPS_NODIST = \
	$(abs_top_builddir)/src/libcvc4.la \
	$(abs_top_builddir)/src/parser/libcvc4parser.la \
	$(abs_top_builddir)/src/compat/libcvc4compat.la \
	cvc3_george.lo

TEST_DEPS = \
	$(TEST_DEPS_DIST) \
	$(TEST_DEPS_NODIST)

EXTRA_DIST = \
	$(CPLUSPLUS_TESTS:%=%.cpp) \
	$(TEST_DEPS_DIST)

if STATIC_BINARY
system_LINK = $(CXXLINK) -all-static
else
system_LINK = $(CXXLINK)
endif

AM_CPPFLAGS = \
	-I. \
	"-I@top_srcdir@/src/include" \
	"-I@top_srcdir@/lib" \
	"-I@top_srcdir@/src" \
	"-I@top_builddir@/src" \
	"-I@top_srcdir@/src/prop/minisat" \
	-D __STDC_LIMIT_MACROS \
	-D __STDC_FORMAT_MACROS \
	-D __BUILDING_CVC4_SYSTEM_TEST \
	$(TEST_CPPFLAGS)
LIBADD = \
	@abs_top_builddir@/src/compat/libcvc4compat.la \
	@abs_top_builddir@/src/parser/libcvc4parser.la \
	@abs_top_builddir@/src/libcvc4.la

# WHEN SYSTEM TESTS ARE ADDED, BUILD LIKE THIS:
$(filter-out %.class.lo,$(TESTS:%=%.lo)): %.lo: %.cpp
	$(AM_V_CXX)$(LTCXXCOMPILE) $(AM_CXXFLAGS) -c -o $@ $+
$(filter-out %.class,$(TESTS)): %: %.lo $(LIBADD)
	$(AM_V_CXXLD)$(system_LINK) $(LIBADD) $(AM_LDFLAGS) $(LIBS) $<
cvc3_main: cvc3_george.lo $(LIBADD)
	$(AM_V_CXXLD)$(system_LINK) $(LIBADD) $(AM_LDFLAGS) $(LIBS) $+
CVC4JavaTest.class: CVC4JavaTest.java @abs_top_builddir@/src/bindings/cvc4.jar @abs_top_builddir@/src/bindings/libcvc4bindings_java.la
	$(AM_V_JAVAC)$(JAVAC) -classpath @abs_top_builddir@/src/bindings/cvc4.jar -d $(builddir) $<

# for silent automake rules
AM_V_JAVAC = $(am__v_JAVAC_$(V))
am__v_JAVAC_ = $(am__v_JAVAC_$(AM_DEFAULT_VERBOSITY))
am__v_JAVAC_0 = @echo "  JAVAC " $@;

# trick automake into setting LTCXXCOMPILE, CXXLINK, etc.
if CVC4_FALSE
noinst_LTLIBRARIES = libdummy.la
nodist_libdummy_la_SOURCES = ouroborous.cpp
libdummy_la_LIBADD = @abs_top_builddir@/src/libcvc4.la
endif

# rebuild tests if a library changes
#$(TESTS):: $(TEST_DEPS)

MAKEFLAGS = -k
export VERBOSE = 1

# synonyms for "check" in this directory in this directory
.PHONY: test systemtests
test systemtests: check

# no-ops here
.PHONY: units regress regress0 regress1 regress2 regress3
units regress regress0 regress1 regress2 regress3:
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback