diff options
author | Guillaume Boisseau | 2024-05-27 15:20:52 +0200 |
---|---|---|
committer | GitHub | 2024-05-27 15:20:52 +0200 |
commit | 4f26c7f6f1e554d8ec2f46e868d5dc66c4160d16 (patch) | |
tree | 91c154b6fdc0384e6640e879e140633ffc9599bc /Makefile | |
parent | ad9b5143618537de8377912f8c60cf6375737cb1 (diff) | |
parent | fb16d0af4caacd2c9a3463f6d2b455209b755697 (diff) |
Merge pull request #209 from AeneasVerif/negative-tests
Diffstat (limited to '')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -25,7 +25,7 @@ CHARON_OPTIONS ?= # The directory thta contains the rust source files for tests. INPUTS_DIR ?= tests/src # The directory where to look for the .llbc files. -LLBC_DIR ?= $(PWD)/tests/llbc +LLBC_DIR ?= tests/llbc # In CI, we enforce formatting and activate the (expensive) sanity checks. IN_CI ?= @@ -157,6 +157,8 @@ verify: # List the files and directories in `INPUTS_DIR` INPUTS_LIST = $(wildcard $(INPUTS_DIR)/*) +# Remove the committed output files +INPUTS_LIST := $(filter-out %.out,$(INPUTS_LIST)) # Remove the directory prefix, replace with `test-` INPUTS_LIST := $(subst $(INPUTS_DIR)/,test-,$(INPUTS_LIST)) |