summaryrefslogtreecommitdiff
path: root/test/regress/regress0/unconstrained/Makefile.am
blob: 9a6ca29baf3152e6423db390e92429f8145f61bd (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
BINARY = cvc4
LOG_COMPILER = @srcdir@/../../run_regression
AM_LOG_FLAGS = $(RUN_REGRESSION_ARGS) @top_builddir@/src/main/$(BINARY)$(EXEEXT)

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

override CVC4_REGRESSION_ARGS += --unconstrained-simp
export CVC4_REGRESSION_ARGS

# These are run for all build profiles.
# If a test shouldn't be run in e.g. competition mode,
# put it below in "TESTS +="
# dejan: disable arith2.smt2, arith7.smt2 it's mixed arithmetic and it doesn't go well when changing theoryof 
# lianah: disabled bvdiv.smt2, bvconcat.smt2 as the unconstrained terms are no longer recognized after implementing
# the divide-by-zero semantics for bv division. 
TESTS =	\
	arith3.smt2 \
	arith4.smt2 \
	arith5.smt2 \
	arith6.smt2 \
	arith.smt2 \
	array1.smt2 \
	bvbool3.smt2 \
	bvbool2.smt2 \
	bvbool.smt2 \
	bvcmp.smt2 \
	bvconcat2.smt2 \
	bvdiv2.smt2 \
	bvext.smt2 \
	bvite.smt2 \
	bvmul2.smt2 \
	bvmul3.smt2 \
	bvmul.smt2 \
	bvnot.smt2 \
	bvsle2.smt2 \
	bvsle3.smt2 \
	bvsle4.smt2 \
	bvsle5.smt2 \
	bvsle.smt2 \
	bvslt2.smt2 \
	bvslt3.smt2 \
	bvslt4.smt2 \
	bvslt5.smt2 \
	bvslt.smt2 \
	bvule2.smt2 \
	bvule3.smt2 \
	bvule4.smt2 \
	bvule5.smt2 \
	bvule.smt2 \
	bvult2.smt2 \
	bvult3.smt2 \
	bvult4.smt2 \
	bvult5.smt2 \
	bvult.smt2 \
	geq.smt2 \
	gt.smt2 \
	leq.smt2 \
	lt.smt2 \
	uf1.smt2 \
	uf2.smt2 \
	xor.smt2

EXTRA_DIST = $(TESTS)

#if CVC4_BUILD_PROFILE_COMPETITION
#else
#TESTS += \
#	error.cvc
#endif
#
# and make sure to distribute it
#EXTRA_DIST += \
#	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