summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGuillaume Boisseau2024-05-27 15:20:52 +0200
committerGitHub2024-05-27 15:20:52 +0200
commit4f26c7f6f1e554d8ec2f46e868d5dc66c4160d16 (patch)
tree91c154b6fdc0384e6640e879e140633ffc9599bc /Makefile
parentad9b5143618537de8377912f8c60cf6375737cb1 (diff)
parentfb16d0af4caacd2c9a3463f6d2b455209b755697 (diff)
Merge pull request #209 from AeneasVerif/negative-tests
Diffstat (limited to '')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index bda88c74..38da9f7e 100644
--- a/Makefile
+++ b/Makefile
@@ -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))