blob: efbef884becc5d19aea9beec13b0d5d9666c78f9 (
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
|
all: build-test
CHARON_HOME = ../charon
CHARON_EXEC = $(CHARON_HOME)/charon
DEST_DIR = tests
# We use those variables, whose definition depends on the rule we apply
CHARON_TESTS_DIR =
CHARON_OPTIONS =
CHARON_TESTS_SRC =
# The user can specify additional translation options for Aeneas:
OPTIONS ?=
# Default translation options:
# - insert calls to the normalizer in the translated code to test the
# generated unit functions
TRANS_OPTIONS := -test-trans-units $(OPTIONS)
SUBDIR :=
# Build the project and test it
.PHONY: build-test
build-test: build test
# Build the project
.PHONY: build
build:
dune build src/main.exe
# Test the project
.PHONY: test
test: build translate-no_nested_borrows translate-hashmap translate-paper \
translate-nll-betree_nll
# Add specific options to some tests
translate-no_nested_borrows translate-paper: \
TRANS_OPTIONS:=$(TRANS_OPTIONS) -test-units -no-split-files -no-state -no-decreases-clauses
translate-no_nested_borrows translate-paper: SUBDIR:=misc
translate-hashmap: TRANS_OPTIONS:=$(TRANS_OPTIONS) -template-clauses -no-state
translate-hashmap: SUBDIR:=hashmap
translate-nll-betree_nll: TRANS_OPTIONS=-test-units -no-split-files -no-state -no-decreases-clauses
translate-nll-betree_nll: SUBDIR:=misc
# Generic rules to extract the CFIM from a rust file
# The "standard" and the nll (non-linear lifetime) tests are in separate
# directories in Charon
.PHONY: gen-cfim-%
# TODO: remove those "gen-..." rules, and just do `make` in the charon repo
gen-cfim-%: CHARON_OPTIONS = --dest ../tests/cfim --no-code-duplication
gen-cfim-%: CHARON_TESTS_SRC = ../tests/src
gen-cfim-nll-%: CHARON_OPTIONS = --dest ../tests-nll/cfim --no-code-duplication --nll
gen-cfim-nll-%: CHARON_TESTS_SRC = ../tests-nll/src
gen-cfim-%: build
cd $(CHARON_HOME)/charon && cargo run $(CHARON_TESTS_SRC)/$*.rs $(CHARON_OPTIONS)
gen-cfim-nll-%: build
cd $(CHARON_HOME)/charon && cargo run $(CHARON_TESTS_SRC)/$*.rs $(CHARON_OPTIONS)
# Generic rule to test the translation on a CFIM file
.PHONY: translate-%
translate-%: CHARON_TESTS_DIR = $(CHARON_HOME)/tests/cfim
translate-nll-%: CHARON_TESTS_DIR = $(CHARON_HOME)/tests-nll/cfim
translate-%: gen-cfim-%
dune exec -- src/main.exe $(CHARON_TESTS_DIR)/$*.cfim -dest $(DEST_DIR)/$(SUBDIR) $(TRANS_OPTIONS)
translate-nll-%: gen-cfim-nll-%
dune exec -- src/main.exe $(CHARON_TESTS_DIR)/$*.cfim -dest $(DEST_DIR)/$(SUBDIR) $(TRANS_OPTIONS)
.PHONY: doc
doc:
dune build @doc
|