diff options
author | Nadrieril | 2024-05-27 11:22:37 +0200 |
---|---|---|
committer | Nadrieril | 2024-05-27 14:40:34 +0200 |
commit | 9c09789c26dd8142b8a29b42e250a685aa983e58 (patch) | |
tree | 0ba6a9de8a5aa7c3c037022c0446ed2bf772227f /Makefile | |
parent | aee6dc227c4ed041bbbae7cf38729a4b1a3a6869 (diff) |
runner: Support negative tests
Diffstat (limited to 'Makefile')
-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)) |