diff options
Diffstat (limited to '')
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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: |