Skip to content

Commit

Permalink
Update the Makefile to filter more files when running tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sonmarcho committed Jul 3, 2024
1 parent a2f87c1 commit bd5a75a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,8 @@ verify:
INPUTS_LIST = $(wildcard $(INPUTS_DIR)/*)
# Remove the committed output files
INPUTS_LIST := $(filter-out %.out,$(INPUTS_LIST))
# Remove some temporary files which are inserted by, for instance, Emacs
INPUTS_LIST := $(filter-out %~,$(INPUTS_LIST))
# Remove the directory prefix, replace with `test-`
INPUTS_LIST := $(subst $(INPUTS_DIR)/,test-,$(INPUTS_LIST))

Expand Down

0 comments on commit bd5a75a

Please sign in to comment.