summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorSon Ho2022-02-03 22:59:41 +0100
committerSon Ho2022-02-03 22:59:41 +0100
commit88c13a37e0aba4bbd0bfaa7575848340d503cbc2 (patch)
treeda03c2ca43bda851103b824d3d9883f9a4577903 /Makefile
parent88608b517e3a3fb556155440a4e2908b414c9826 (diff)
Fix an issue with the assumed box functions being considered as monadic
Diffstat (limited to '')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 3c9d9f1e..e47a170d 100644
--- a/Makefile
+++ b/Makefile
@@ -18,16 +18,16 @@ build-run-check-trace: generate-cfim
dune build src/main.exe && \
dune exec src/main.exe $(CFIM_TEST_FILE) > tests/trace_current.txt && \
cmp tests/trace_reference.txt tests/trace_current.txt && \
- cp fstar/Primitives.fst $(CHARON_TESTS_DIR)
+ cp fstar/Primitives.fst $(CHARON_TESTS_DIR)
# Build the project and update the trace
.PHONY: regen-trace
regen-trace: generate-cfim
dune build src/main.exe && \
dune exec src/main.exe $(CFIM_TEST_FILE) > tests/trace_current.txt && \
- rm -f tests/trace_reference.txt && \
- cp tests/trace_current.txt tests/trace_reference.txt \
- cp fstar/Primitives.fst $(CHARON_TESTS_DIR)
+ rm -f tests/trace_reference.txt && \
+ cp tests/trace_current.txt tests/trace_reference.txt && \
+ cp fstar/Primitives.fst $(CHARON_TESTS_DIR)
.PHONY: generate-cfim
generate-cfim: