add valgrind checks
This commit is contained in:
parent
8179ba5801
commit
6e043fbdfb
15
Makefile
15
Makefile
@ -29,6 +29,11 @@ functest: bin/functest_$(subst /,_,$(SCHEME))
|
|||||||
run-functest: bin/functest_$(subst /,_,$(SCHEME))
|
run-functest: bin/functest_$(subst /,_,$(SCHEME))
|
||||||
./$<
|
./$<
|
||||||
|
|
||||||
|
.PHONY: run-valgrind
|
||||||
|
run-valgrind: bin/functest_$(subst /,_,$(SCHEME))
|
||||||
|
valgrind --leak-check=full --error-exitcode=1 $<
|
||||||
|
|
||||||
|
|
||||||
bin/testvectors_$(subst /,_,$(SCHEME)): test/$(dir $(SCHEME))testvectors.c $(wildcard $(SCHEME)/clean/*.c) $(wildcard $(SCHEME)/clean/*.h) | require_scheme
|
bin/testvectors_$(subst /,_,$(SCHEME)): test/$(dir $(SCHEME))testvectors.c $(wildcard $(SCHEME)/clean/*.c) $(wildcard $(SCHEME)/clean/*.h) | require_scheme
|
||||||
mkdir -p bin
|
mkdir -p bin
|
||||||
$(CC) $(CFLAGS) \
|
$(CC) $(CFLAGS) \
|
||||||
@ -98,6 +103,8 @@ help:
|
|||||||
@echo "make run-testvectors-all Run all testvector checks"
|
@echo "make run-testvectors-all Run all testvector checks"
|
||||||
@echo "make run-symbol-namespace SCHEME=scheme Run symbol namespace checks for SCHEME"
|
@echo "make run-symbol-namespace SCHEME=scheme Run symbol namespace checks for SCHEME"
|
||||||
@echo "make run-symbol-namespace-all Run all symbol namespace checks"
|
@echo "make run-symbol-namespace-all Run all symbol namespace checks"
|
||||||
|
@echo "make run-valgrind SCHEME=scheme Run valgrind checks for SCHEME"
|
||||||
|
@echo "make run-valgrind-all Run valgrind checks all schemes"
|
||||||
@echo "make clean Clean up the bin/ folder"
|
@echo "make clean Clean up the bin/ folder"
|
||||||
@echo "make format Automatically formats all the source code"
|
@echo "make format Automatically formats all the source code"
|
||||||
@echo "make tidy SCHEME=scheme Runs the clang-tidy linter against SCHEME"
|
@echo "make tidy SCHEME=scheme Runs the clang-tidy linter against SCHEME"
|
||||||
@ -112,6 +119,12 @@ functest-all:
|
|||||||
$(MAKE) functest SCHEME=$$scheme || exit 1; \
|
$(MAKE) functest SCHEME=$$scheme || exit 1; \
|
||||||
done
|
done
|
||||||
|
|
||||||
|
.PHONY: run-valgrind-all
|
||||||
|
run-valgrind-all:
|
||||||
|
@for scheme in $(ALL_SCHEMES); do \
|
||||||
|
$(MAKE) run-valgrind SCHEME=$$scheme || exit 1; \
|
||||||
|
done
|
||||||
|
|
||||||
.PHONY: run-testvectors
|
.PHONY: run-testvectors
|
||||||
run-testvectors: test/check_testvectors.py | require_scheme
|
run-testvectors: test/check_testvectors.py | require_scheme
|
||||||
python3 test/check_testvectors.py $(SCHEME) || exit 1; \
|
python3 test/check_testvectors.py $(SCHEME) || exit 1; \
|
||||||
@ -141,7 +154,7 @@ run-functest-all: functest-all
|
|||||||
@echo Tests completed
|
@echo Tests completed
|
||||||
|
|
||||||
.PHONY: test-all
|
.PHONY: test-all
|
||||||
test-all: run-functest-all run-testvectors-all run-symbol-namespace-all
|
test-all: run-functest-all run-valgrind-all run-testvectors-all run-symbol-namespace-all
|
||||||
|
|
||||||
.PHONY: tidy-all
|
.PHONY: tidy-all
|
||||||
tidy-all:
|
tidy-all:
|
||||||
|
Loading…
Reference in New Issue
Block a user