added test rule
parent
6b987e644b
commit
ec6854c71b
6
Makefile
6
Makefile
|
@ -130,4 +130,8 @@ tidy:
|
||||||
clean:
|
clean:
|
||||||
rm -f libhardened_malloc.so $(OBJECTS)
|
rm -f libhardened_malloc.so $(OBJECTS)
|
||||||
|
|
||||||
.PHONY: check clean tidy
|
test: libhardened_malloc.so
|
||||||
|
make -C test/
|
||||||
|
-python -m unittest discover --start-directory test/
|
||||||
|
|
||||||
|
.PHONY: check clean tidy test
|
||||||
|
|
|
@ -18,6 +18,7 @@ EXECUTABLES := \
|
||||||
large_array_growth
|
large_array_growth
|
||||||
|
|
||||||
all: $(EXECUTABLES)
|
all: $(EXECUTABLES)
|
||||||
|
make -C simple-memory-corruption
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f $(EXECUTABLES)
|
rm -f $(EXECUTABLES)
|
||||||
|
|
Loading…
Reference in New Issue