summaryrefslogtreecommitdiff
path: root/test/regress/regress0/Makefile.am
blob: 6af6fbf70d8965931cecc01861560555e2e75757 (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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
SUBDIRS = . arith precedence uf uflra uflia bv arrays aufbv auflia datatypes quantifiers rewriterules lemmas push-pop preprocess unconstrained decision
DIST_SUBDIRS = . arith precedence uf uflra uflia bv arrays aufbv auflia datatypes quantifiers rewriterules lemmas push-pop preprocess unconstrained decision

BINARY = cvc4
LOG_COMPILER = @srcdir@/../run_regression
AM_LOG_FLAGS = $(RUN_REGRESSION_ARGS) @top_builddir@/src/main/$(BINARY)

if AUTOMAKE_1_11
# old-style (pre-automake 1.12) test harness
TESTS_ENVIRONMENT = \
	$(TESTS_ENVIRONMENT) $(LOG_COMPILER) \
	$(AM_LOG_FLAGS) $(LOG_FLAGS)
endif

MAKEFLAGS = -k

# These are run for all build profiles.
# If a test shouldn't be run in e.g. competition mode,
# put it below in "TESTS +="

# Regression tests for SMT inputs
SMT_TESTS = \
	distinct.smt \
	flet.smt \
	flet2.smt \
	fuzz_1.smt \
	fuzz_3.smt \
	ineq_basic.smt \
	ineq_slack.smt \
	ite_real_int_type.smt \
	ite_real_valid.smt \
	let.smt \
	let2.smt \
	simplification_bug.smt \
	simplification_bug2.smt \
	simple.smt \
	simple2.smt \
	simple-lra.smt \
	simple-rdl.smt \
	simple-uf.smt

# Regression tests for SMT2 inputs
SMT2_TESTS = \
	ite2.smt2 \
	ite3.smt2 \
	ite4.smt2 \
	simple-lra.smt2 \
	simple-rdl.smt2 \
	simple-uf.smt2 \
	simplification_bug4.smt2 \
	parallel-let.smt2 \
	get-value-incremental.smt2 \
	hung13sdk_output1.smt2 \
	hung10_itesdk_output2.smt2 \
	hung10_itesdk_output1.smt2 \
	hung13sdk_output2.smt2

# Regression tests for PL inputs
CVC_TESTS = \
	boolean.cvc \
	boolean-prec.cvc \
	hole6.cvc \
	ite.cvc \
	let.cvc \
	logops.01.cvc \
	logops.02.cvc \
	logops.03.cvc \
	logops.04.cvc \
	logops.05.cvc \
	simple.cvc \
	smallcnf.cvc \
	test9.cvc \
	test11.cvc \
	uf20-03.cvc \
	wiki.01.cvc \
	wiki.02.cvc \
	wiki.03.cvc \
	wiki.04.cvc \
	wiki.05.cvc \
	wiki.06.cvc \
	wiki.07.cvc \
	wiki.08.cvc \
	wiki.09.cvc \
	wiki.10.cvc \
	wiki.11.cvc \
	wiki.12.cvc \
	wiki.13.cvc \
	wiki.14.cvc \
	wiki.15.cvc \
	wiki.16.cvc \
	wiki.17.cvc \
	wiki.18.cvc \
	wiki.19.cvc \
	wiki.20.cvc \
	wiki.21.cvc \
	simplification_bug3.cvc \
	queries0.cvc \
	print_lambda.cvc

# Regression tests for TPTP inputs
TPTP_TESTS = \
	tptp_parser.p \
	tptp_parser2.p \
	tptp_parser3.p \
	tptp_parser4.p \
	tptp_parser5.p \
	tptp_parser6.p \
	tptp_parser7.p \
	tptp_parser8.p \
	tptp_parser9.p \
	tptp_parser10.p

# Regression tests derived from bug reports
BUG_TESTS = \
	bug32.cvc \
	bug49.smt \
	bug161.smt \
	bug164.smt \
	bug167.smt \
	bug168.smt \
	bug187.smt2 \
	bug216.smt2 \
	bug217.smt2 \
	bug220.smt2 \
	bug239.smt \
	bug274.cvc \
	bug288.smt \
	bug288b.smt \
	bug288c.smt \
	bug296.smt2 \
	buggy-ite.smt2 \
	bug303.smt2 \
	bug310.cvc \
	bug322.cvc \
	bug322b.cvc \
	bug339.smt2 \
	bug365.smt2 \
	bug382.smt2 \
	bug383.smt2 \
	bug398.smt2 \
	bug421.smt2 \
	bug421b.smt2 \
	bug425.cvc

TESTS =	$(SMT_TESTS) $(SMT2_TESTS) $(CVC_TESTS) $(TPTP_TESTS) $(BUG_TESTS)

EXTRA_DIST = $(TESTS) \
	simplification_bug4.smt2.expect \
	bug216.smt2.expect

if CVC4_BUILD_PROFILE_COMPETITION
else
TESTS += \
	error.cvc
endif

# and make sure to distribute it
EXTRA_DIST += \
	subranges.cvc \
	error.cvc

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

# do nothing in this subdir
.PHONY: regress1 regress2 regress3
regress1 regress2 regress3:
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback